点击切换图形验证码:给图片绑定一个点击事件,每次点击的时候赋值一个随机数
将图片地址传到绑定的事件中
<image src="{{img}}" data-src="https://aaafs.top/com.jiminsheng.m/index.php/home/user/piccode" class="piccode" bindtap="nextPic"></image>
赋一个初始值
img: "https://aaafs.top/com.jiminsheng.m/index.php/home/user/piccode"
图片点击事件
nextPic:function(e){
var that = this;
let num = Math.random();
var pic = e.currentTarget.dataset.src + '?id=' + num;
console.log(pic);
that.setData({
img: pic
})
},