微信小程序实现笑脸评分功能

image方式实现的笑脸评分功能

微信小程序实现笑脸评分功能

由于我这里的图片使用的不是背景图,所以实现方法跟使用背景图的方式不同
你也可以使用wx:for来操作   由于微信小程序需要base64格式或者网图才能设置背景图  所以就没用背景图

首先这里放的是差中好评的三张图,首先进入页面进行评分时需要默认是好评  1.png表示的是未选中图片  2.png代表的是选中的图片   图片点击绑定了同一个函数

<view> <view bindtap='change_color' data-id='1'> <image src='https://www.jb51.net/image/差评{{ico_index1}}.png'></image> 差评 </view> <view bindtap='change_color' data-id='2'> <image src='https://www.jb51.net/image/中评{{ico_index2}}.png'></image> 中评 </view> <view bindtap='change_color' data-id='3'> <image src='https://www.jb51.net/image/好评{{ico_index3}}.png'></image> 好评 </view> </view>

js:

Page({ /** * 页面的初始数据 ico_index默认表示的是三张图片是否被选中的状态 face_type表示的是评分 差中好评分别对应分数为1,3,5 因为当前默认好评所以评分默认为5 */ data: { ico_index1:'1', ico_index2: '1', ico_index3: '2', face_type: '5', }, change_color:function(e){ var id = e.currentTarget.dataset.id; //获取当前点击的是哪一个图片 通过wxml中data-id 来判断的 console.log(id); if (id==1){ //如果此时点击的是第1张图片 第1张图片变成2.png, 则其他图片变成1.png ,且此时评分变为1 后面以此类推 this.setData({ ico_index1: '2', ico_index2: '1', ico_index3: '1', face_type: '1' }) } if (id == 2) { this.setData({ ico_index1: '1', ico_index2: '2', ico_index3: '1', face_type:'3' }) } if (id == 3) { this.setData({ ico_index1: '1', ico_index2: '1', ico_index3: '2', face_type:'5' //wxml中直接通过{{face_type}}模板语言来使用 }) } }, })

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/59d2a376424ec53fa79f03ab6865215f.html