mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-11 18:32:50 +00:00
24 lines
420 B
JavaScript
24 lines
420 B
JavaScript
var app = getApp();
|
|
Component({
|
|
properties: {
|
|
reply:{
|
|
type:Object,
|
|
value:[],
|
|
}
|
|
},
|
|
data: {
|
|
|
|
},
|
|
attached: function () {
|
|
|
|
},
|
|
methods: {
|
|
getpreviewImage:function(e){
|
|
var dataset=e.currentTarget.dataset;
|
|
wx.previewImage({
|
|
urls: this.data.reply[dataset.index].pics,
|
|
current: this.data.reply[dataset.index].pics[dataset.pic_index],
|
|
});
|
|
},
|
|
}
|
|
}) |