From 481dac01739cbc28a25110fb175f997c22000923 Mon Sep 17 00:00:00 2001 From: TimSpan Date: Fri, 13 Sep 2024 14:45:56 +0800 Subject: [PATCH] ... --- .DS_Store | Bin 8196 -> 8196 bytes .../pages/policeDetails/index.config.ts | 0 .../subPages/pages/policeDetails/index.scss | 0 .../subPages/pages/policeDetails/index.vue | 0 .../subPages/pages/policeManager/index.vue | 12 +++++++++++- 5 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 collect_information/src/subPages/pages/policeDetails/index.config.ts create mode 100644 collect_information/src/subPages/pages/policeDetails/index.scss create mode 100644 collect_information/src/subPages/pages/policeDetails/index.vue diff --git a/.DS_Store b/.DS_Store index 78de2980e1212242d7c191d55842f41621754d53..70e93d6fe30dad502ef8ca724c95d94ccd9bdc06 100644 GIT binary patch delta 162 zcmZp1XmQw}DiEjak;A~iz`~%%kj{|FP?DSP;*yk;p9B=+SXjRH!$;3!j;Qh}c;yQ+ z41<&Na|?ia7#QLYY;G1f#>D)P<jVe@<8ct)n*)sq86 R*D-$B{9n|c9ht|<1OP-7H4Xp( delta 171 zcmZp1XmQw}DiEi*bsqx*0}F#5LpnnyLrHGFi%U{YeiBfO!z%m0qMaVc98u*{@X8lt z7zQWj=N16D*KY4_w0!YY#sgk3m3bi5G`azEw>7I+}c$GBkgd*OIS XrrYI{14P#`9@zX})Sn%h$I1i%?_4*} diff --git a/collect_information/src/subPages/pages/policeDetails/index.config.ts b/collect_information/src/subPages/pages/policeDetails/index.config.ts new file mode 100644 index 0000000..e69de29 diff --git a/collect_information/src/subPages/pages/policeDetails/index.scss b/collect_information/src/subPages/pages/policeDetails/index.scss new file mode 100644 index 0000000..e69de29 diff --git a/collect_information/src/subPages/pages/policeDetails/index.vue b/collect_information/src/subPages/pages/policeDetails/index.vue new file mode 100644 index 0000000..e69de29 diff --git a/collect_information/src/subPages/pages/policeManager/index.vue b/collect_information/src/subPages/pages/policeManager/index.vue index f299bd0..93b8ae2 100644 --- a/collect_information/src/subPages/pages/policeManager/index.vue +++ b/collect_information/src/subPages/pages/policeManager/index.vue @@ -13,7 +13,9 @@ 电话:{{ item?.contactPersonInfo.telephone }} - {{ items.name }} + + {{ items.name }} + @@ -35,6 +37,14 @@ const getMyServiceProject = async () => { myProjectList.value = resp.data console.log(resp.data) } + +const projectClick = (items: ServiceProjectList, name: string) => { + console.log(name, JSON.stringify(items)) + Taro.navigateTo({ + + url: `/subPages/pages/projectDetails/projectDetails?name=${name}&item=${JSON.stringify(items)}`, + }) +} onMounted(async () => { await getMyServiceProject() })