diff --git a/.DS_Store b/.DS_Store
index 78de298..70e93d6 100644
Binary files a/.DS_Store and b/.DS_Store differ
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()
})