小程序實現星級打分


效果圖

wxml

<view >
  
    <block wx:for="{{stars}}">
      <image class="star-image" style="left: {{item*100}}rpx" src="{{key > item ?(key-item == 0.5?halfSrc:selectedSrc) : normalSrc}}">
        <view class="item" style="left:0rpx" data-key="{{item+0.5}}" bindtap="selectLeft"></view>
        <view class="item" style="left:50rpx" data-key="{{item+1}}" bindtap="selectRight"></view>
      </image>
    </block>
  <view style="margin-top:450rpx">
    <button bindtap="startRating">確認</button>
  </view>
</view>

wxss

.star-image{
  position: absolute;
  top: 50rpx;
  margin-left: 100rpx;
  width: 100rpx;
  height: 100rpx;
  src: "/images/icon/star-no.png";
}
.item{
  position: absolute;
  top: 50rpx;
  width: 100rpx;
  height: 100rpx;
}

js

//index.js
var app = getApp()
var count = 0;
Page({
  data: {
    stars: [0, 1, 2, 3, 4],
    normalSrc: '/images/icon/star-no.png',
    selectedSrc: '/images/icon/star-full.png',
    halfSrc: '/images/icon/star-half.png',
    key: 0,//評分
    status:'',    //0未課評 1已課評
  },

  /**
     * 生命周期函數--監聽頁面加載
     */
  onLoad: function (options) {
    console.log(options.status)
  },

  /**
   * 點擊左邊,半顆星
   */
  selectLeft: function (e) {
    var key = e.currentTarget.dataset.key
    if (this.data.key == 0.5 && e.currentTarget.dataset.key == 0.5) {
      //只有一顆星的時候,再次點擊,變為0顆
      key = 0;
    }
    count = key
    this.setData({
      key: key
    })

  },
  /**
   * 點擊右邊,整顆星
   */
  selectRight: function (e) {
    var key = e.currentTarget.dataset.key
    count = key
    this.setData({
      key: key
    })
  },
  // 確定按鈕
  startRating: function (e) {
    wx.showModal({
      title: '分數',
      content: "" + count,
      success: function (res) {
        if (res.confirm) {
          console.log('用戶點擊確定')
        }
      }
    })
  }
})

轉自小程序組件之星級評分

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM