From 60bdd6e881fbefc8c375eb9e9d71009d6c63859d Mon Sep 17 00:00:00 2001 From: hejianhao <15708179461@qq.com> Date: 星期日, 18 五月 2025 16:35:16 +0800 Subject: [PATCH] H5工单列表、工单详情、诉求监督 --- H5/pages/index/index.vue | 12 +++++++++++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/H5/pages/index/index.vue b/H5/pages/index/index.vue index 0f84781..aafca34 100644 --- a/H5/pages/index/index.vue +++ b/H5/pages/index/index.vue @@ -81,6 +81,11 @@ <image class="w-81 h-77 ml-38" src="/static/home/Group 2@2x.png" mode=""></image> <text class="ml-37 font-bold">党员审核</text> </view> + <view class="pt-38 pb-38 bg1 w-333 br-19 mt-19 flex a-center" @tap.stop="toSupervision" + v-if="showData && userInfo.isAdmin == 1"> + <image class="w-81 h-77 ml-38" src="/static/home/supervision.png" mode=""></image> + <text class="ml-37 font-bold">诉求监督</text> + </view> </view> <view class="flex j-between a-center mt-38"> <!-- <text class="color1">消息通知</text> --> @@ -276,9 +281,14 @@ this.getappletcinfo() }, methods: { + toSupervision() { + uni.navigateTo({ + url: '/pages/supervision/supervision' + }) + }, toStatistics() { uni.navigateTo({ - url:'/pages/statistics/index' + url: '/pages/statistics/index' }) }, // 管理员确认 -- Gitblit v1.7.1