|
@@ -6,7 +6,7 @@
|
|
borderRadius="10rpx"
|
|
borderRadius="10rpx"
|
|
:isLoading="true"
|
|
:isLoading="true"
|
|
:loadingType="5"
|
|
:loadingType="5"
|
|
- ></tui-skeleton>
|
|
|
|
|
|
+ />
|
|
<view class="container">
|
|
<view class="container">
|
|
<tab-list v-model="params.type" />
|
|
<tab-list v-model="params.type" />
|
|
<view v-for="(cell, index) in messageList" class="info-card" :key="index">
|
|
<view v-for="(cell, index) in messageList" class="info-card" :key="index">
|
|
@@ -98,17 +98,19 @@ export default {
|
|
})
|
|
})
|
|
},
|
|
},
|
|
// 详情
|
|
// 详情
|
|
- async trampInfo($event) {
|
|
|
|
- const time = $event.time.replace(/[年月日]/g, '-')
|
|
|
|
- if ($event.shopTieredType === 7 || $event.shopTieredType === 10) {
|
|
|
|
|
|
+ async trampInfo(cell) {
|
|
|
|
+ const time = cell.time.replace(/[年月日]/g, '-')
|
|
|
|
+ if (cell.shopTieredType === 7 || cell.shopTieredType === 10) {
|
|
this.$api.navigateTo(
|
|
this.$api.navigateTo(
|
|
'/pages/seller/notice/service/Institutional_visits?spId=' +
|
|
'/pages/seller/notice/service/Institutional_visits?spId=' +
|
|
this.userInfo.serviceProviderId +
|
|
this.userInfo.serviceProviderId +
|
|
'&accDateTime=' +
|
|
'&accDateTime=' +
|
|
- $event.time + '&type=' + this.params.type
|
|
|
|
|
|
+ cell.time + '&type=' + this.params.type
|
|
)
|
|
)
|
|
- } else {
|
|
|
|
- const {data} = await this.SellerService.getFindUserId({id: $event.clubId, userType: 1})
|
|
|
|
|
|
+ } else if(cell.shopTieredType === 11) {
|
|
|
|
+ this.$api.navigateTo('/pages/seller/club/club-remind')
|
|
|
|
+ }else {
|
|
|
|
+ const {data} = await this.SellerService.getFindUserId({id: cell.clubId, userType: 1})
|
|
this.$api.navigateTo('/pages/seller/club/club-portrait?userId=' + data)
|
|
this.$api.navigateTo('/pages/seller/club/club-portrait?userId=' + data)
|
|
}
|
|
}
|
|
}
|
|
}
|