From f218b3c2cb1360d5b30102cd592745958001564e Mon Sep 17 00:00:00 2001 From: BianLzhaoMin <11485688+bianliangzhaomin123@user.noreply.gitee.com> Date: Thu, 17 Oct 2024 14:00:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BD=9C=E4=B8=9A=E8=AE=A1?= =?UTF-8?q?=E5=88=92=E8=AF=A6=E6=83=85=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 7 +++++++ pages/realName/workPlan-details/index.vue | 9 +++++++++ pages/realName/workPlan/index.vue | 11 ++++++++++- 3 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 pages/realName/workPlan-details/index.vue diff --git a/pages.json b/pages.json index f7a5753..f267a3e 100644 --- a/pages.json +++ b/pages.json @@ -226,6 +226,13 @@ "navigationStyle": "custom" } }, + { + //首页二级跳转页面 -- 作业计划--详情 + "path": "pages/realName/workPlan-details/index", + "style": { + "navigationStyle": "custom" + } + }, { //工作台 "path": "pages/realName/workbench/index", diff --git a/pages/realName/workPlan-details/index.vue b/pages/realName/workPlan-details/index.vue new file mode 100644 index 0000000..891355c --- /dev/null +++ b/pages/realName/workPlan-details/index.vue @@ -0,0 +1,9 @@ + + + + + diff --git a/pages/realName/workPlan/index.vue b/pages/realName/workPlan/index.vue index 2f9c343..c142842 100644 --- a/pages/realName/workPlan/index.vue +++ b/pages/realName/workPlan/index.vue @@ -26,7 +26,12 @@ - + {{ index + 1 }} {{ item.proName }} @@ -154,6 +159,10 @@ export default { this.getWorkPlantData().then(() => { this.$refs.popup.close() }) + }, + /* 点击跳转作业计划详情 */ + onViewWorkDetails(row) { + uni.navigateTo({ url: '/pages/realName/workPlan-details/index' }) } } }