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
696 B
34 lines
696 B
6 years ago
|
Component({
|
||
|
data: {
|
||
|
support: '../../../../images/support.png',
|
||
|
supported: '../../../../images/supported.png',
|
||
|
dispport: '../../../../images/dispport.png',
|
||
|
dispported: '../../../../images/dispported.png'
|
||
|
},
|
||
|
properties: {
|
||
|
detailObj: {
|
||
|
type: Object,
|
||
|
value: {}
|
||
|
}
|
||
|
},
|
||
|
lifetimes: {
|
||
|
|
||
|
},
|
||
|
pageLifetimes: {
|
||
|
|
||
|
},
|
||
|
methods: {
|
||
|
supportIssueOrProject () {
|
||
|
this.triggerEvent('supportIssueOrProject')
|
||
|
},
|
||
|
dispportIssueOrProject () {
|
||
|
this.triggerEvent('dispportIssueOrProject')
|
||
|
},
|
||
|
preViewImage (e) {
|
||
|
wx.previewImage({
|
||
|
urls: this.data.detailObj.images,
|
||
|
current: e.currentTarget.dataset.src
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
})
|