提交法律援助和财税援助,调整我的页面

This commit is contained in:
2024-11-29 15:36:18 +08:00
parent 520f44a25f
commit 3ad21ea708
15 changed files with 219 additions and 50 deletions

View File

@@ -13,6 +13,7 @@ Page({
*/
data: {
user: {},
tenement: {},
visible: false,
},
@@ -62,6 +63,8 @@ Page({
}
this.init()
this.getUnReadNumber()
const tenement = wx.getStorageSync('tenement')
this.setData({ tenement })
},
async init() {
const tenement = wx.getStorageSync('tenement')
@@ -131,5 +134,15 @@ Page({
wx.navigateTo({
url: '/pages/aid/finance/index',
})
},
jumpToLaw() {
wx.navigateTo({
url: '/pages/aid/law/index',
})
},
jumpToEncyclopedia() {
wx.navigateTo({
url: '/pages/encyclopedia/index',
})
}
})