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.
42 lines
931 B
42 lines
931 B
5 years ago
|
Component({
|
||
|
data: {
|
||
|
support: '../../../../images/largegoodhui.png',
|
||
|
supported: '../../../../images/largeGoodliang.png',
|
||
|
dispport: '../../../../images/largebadHui.png',
|
||
|
dispported: '../../../../images/largebadliang.png'
|
||
|
},
|
||
|
properties: {
|
||
|
topList: {
|
||
|
type: Object
|
||
|
},
|
||
|
isShowDetailContent:{
|
||
|
type:Boolean
|
||
|
}
|
||
|
},
|
||
|
lifetimes: {
|
||
|
|
||
|
},
|
||
|
pageLifetimes: {
|
||
|
|
||
|
},
|
||
|
methods: {
|
||
|
supportIssueOrProject() {
|
||
|
this.triggerEvent('supportIssueOrProject')
|
||
|
},
|
||
|
dispportIssueOrProject() {
|
||
|
this.triggerEvent('dispportIssueOrProject')
|
||
|
},
|
||
|
//全屏预览图片
|
||
|
preViewImage(e) {
|
||
|
console.log(e.currentTarget, e)
|
||
|
// let arr:any = []
|
||
|
// this.properties.topList.forEach((element:any) => {
|
||
|
// arr.push(element.imgUrl)
|
||
|
// })
|
||
|
// wx.previewImage({
|
||
|
// // urls: arr,
|
||
|
// current: e.currentTarget.dataset.src
|
||
|
// })
|
||
|
}
|
||
|
}
|
||
|
})
|