From 4a363a818a985f239030d3b9f81cedf1ca6325dc Mon Sep 17 00:00:00 2001 From: Fox-33 <1466778434@qq.com> Date: Tue, 28 Oct 2025 13:23:52 +0800 Subject: [PATCH] feat: h5; --- pages.json | 8 +++++ pages_order/growing/activity/export.vue | 59 +++++++++++++++++++++++++++++++++ pages_order/growing/activity/index.vue | 6 ++++ 3 files changed, 73 insertions(+) create mode 100644 pages_order/growing/activity/export.vue diff --git a/pages.json b/pages.json index ca42522..d4b3d6e 100644 --- a/pages.json +++ b/pages.json @@ -143,6 +143,14 @@ { "path": "growing/activity/applyEmail" }, + { + "path": "growing/activity/export", + "style": { + "navigationBarTextStyle": "black", + "navigationBarTitleText": "行后报告", + "navigationBarBackgroundColor": "#DAF3FF" + } + }, { "path": "growing/achievement/index" }, diff --git a/pages_order/growing/activity/export.vue b/pages_order/growing/activity/export.vue new file mode 100644 index 0000000..517d989 --- /dev/null +++ b/pages_order/growing/activity/export.vue @@ -0,0 +1,59 @@ + + + + + \ No newline at end of file diff --git a/pages_order/growing/activity/index.vue b/pages_order/growing/activity/index.vue index 4c1eebe..6d5c3d3 100644 --- a/pages_order/growing/activity/index.vue +++ b/pages_order/growing/activity/index.vue @@ -69,6 +69,7 @@ 行后报告 + @@ -171,6 +172,11 @@ onApplyEmail() { this.$utils.navigateTo(`/pages_order/growing/activity/applyEmail?id=${this.id}`) }, + jumpToExport() { + uni.navigateTo({ + url: `/pages_order/growing/activity/export?id=${this.id}` + }) + }, onMark() { this.$refs.markPopup.open(this.detail.activityId) },