锦水居民端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
552 B

5 years ago
// pages/indexNew/components/volunteer/volunteer.js
5 years ago
const app = getApp()
5 years ago
Component({
/**
* 组件的属性列表
*/
properties: {
5 years ago
volunteerItemObj: {
type: Object,
value: {}
}
5 years ago
},
/**
* 组件的初始数据
*/
data: {
5 years ago
ifclick:true
5 years ago
},
/**
* 组件的方法列表
*/
methods: {
5 years ago
preViewImage(e) {
5 years ago
this.triggerEvent('clickImage', this.data.ifclick)
5 years ago
wx.previewImage({
urls: [e.currentTarget.dataset.src],
current: e.currentTarget.dataset.src
})
}
},
5 years ago
})