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' }) } } }