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.
56 lines
1.3 KiB
56 lines
1.3 KiB
Component({
|
|
properties: {
|
|
sudokuState: {
|
|
type: Object,
|
|
value: {
|
|
consultAvailable: '0',
|
|
appraiseAvailable: '0'
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
// 跳转到左邻右舍
|
|
navigateToAssociation () {
|
|
this.triggerEvent('navigateToAssociation')
|
|
},
|
|
// 跳转到有么说么
|
|
navigateToDiscussion() {
|
|
this.triggerEvent('navigateToDiscussion')
|
|
},
|
|
// 跳转到物业服务
|
|
navigateToProperty () {
|
|
this.triggerEvent('navigateToProperty')
|
|
},
|
|
// 跳转到互帮互助
|
|
navigateToHeart () {
|
|
this.triggerEvent('navigateToHeart')
|
|
},
|
|
// 跳转到社区教育
|
|
navigateToEducation () {
|
|
this.showNotAvailable();
|
|
// this.triggerEvent('navigateToEducation')
|
|
},
|
|
// 跳转到平安榆山
|
|
navigateToSafe () {
|
|
this.showNotAvailable();
|
|
// this.triggerEvent('navigateToSafe')
|
|
},
|
|
// 跳转到政策法规
|
|
navigateToPolicy () {
|
|
this.showNotAvailable();
|
|
// this.triggerEvent('navigateToPolicy')
|
|
},
|
|
// 跳转到综合服务
|
|
navigateToSyntheticalService () {
|
|
this.showNotAvailable();
|
|
// this.triggerEvent('navigateToSynthetical')
|
|
},
|
|
// 暂未开放
|
|
showNotAvailable () {
|
|
wx.showToast({
|
|
icon:'none',
|
|
title: '暂未开放',
|
|
})
|
|
},
|
|
}
|
|
})
|