榆山数据端小程序
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.

27 lines
442 B

Component({
/**
*
*/
properties: {
list:{
type:Object,
value:{}
}
},
/**
*
*/
data: {
},
/**
*
*/
methods: {
goDetail(e:any){
wx.navigateTo({ url: `/subpages/issue/pages/detail/projectDetails/projectDetails?Id=${e.currentTarget.dataset.id}` });
}
}
})