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.
37 lines
1016 B
37 lines
1016 B
5 years ago
|
Page({
|
||
|
data: {
|
||
|
},
|
||
|
onLoad () {
|
||
|
},
|
||
|
// 跳转至难点堵点TOP10
|
||
|
navigateToDifficultPluggingPoint () {
|
||
|
wx.navigateTo({
|
||
|
url: '/subpages/reality/pages/difficultPluggingPoint/difficultPluggingPoint'
|
||
|
})
|
||
|
},
|
||
|
// 跳转到最热议的事
|
||
|
goHotIndex(){
|
||
|
wx.navigateTo({ url: '/subpages/reality/pages/peopleHot/peopleHot' });
|
||
|
},
|
||
|
|
||
|
// 跳转至群众关注的问题
|
||
|
navigateToResidentAttention () {
|
||
|
wx.navigateTo({
|
||
|
url: '/subpages/reality/pages/residentAttention/residentAttention'
|
||
|
})
|
||
|
},
|
||
|
// 跳转至群众满意的事儿
|
||
|
goPeopleSatisfied() {
|
||
|
wx.navigateTo({ url: '/subpages/reality/pages/peolieThing/peopleSatisfied/peopleSatisfied' });
|
||
|
},
|
||
|
// 跳转至群众不满意的事儿
|
||
|
goPeopleDissatisfied() {
|
||
|
wx.navigateTo({ url: '/subpages/reality/pages/peolieThing/peopleDissatisfied/peopleDissatisfied' });
|
||
|
},
|
||
|
// 跳转至 群众自治
|
||
|
navigateToAutonomy () {
|
||
|
wx.navigateTo({
|
||
|
url: '/subpages/reality/pages/autonomy/autonomy'
|
||
|
})
|
||
|
}
|
||
|
})
|