Compare commits

..

No commits in common. "69f28ac7495e8f18d7fab4bf9e8daef7123ff4bc" and "7472cb566aaff92869915f7d67eb18c347948266" have entirely different histories.

5 changed files with 1 additions and 11 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -13,9 +13,7 @@
<text>电话{{ item?.contactPersonInfo.telephone }}</text>
</view>
<view class="project">
<view @click="projectClick(items,item?.name)" v-for="(items,index) in item.serviceProjectList" :key="index">
{{ items.name }}
</view>
<view v-for="(items,index) in item.serviceProjectList" :key="index">{{ items.name }}</view>
</view>
</view>
</view>
@ -37,14 +35,6 @@ 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()
})