30 lines
452 B
JavaScript
30 lines
452 B
JavaScript
// template/report/report.js
|
|
Component({
|
|
/**
|
|
* 组件的属性列表
|
|
*/
|
|
properties: {
|
|
uniqid:String,
|
|
types:String
|
|
},
|
|
|
|
/**
|
|
* 组件的初始数据
|
|
*/
|
|
data: {
|
|
|
|
},
|
|
|
|
/**
|
|
* 组件的方法列表
|
|
*/
|
|
methods: {
|
|
toReport(){
|
|
this.triggerEvent('toReport', {})
|
|
// wx.navigateTo({
|
|
// url: `/pages/report/report?id=${this.properties.uniqid}&types=${this.properties.types}`,
|
|
// })
|
|
}
|
|
}
|
|
})
|