|
@@ -37,7 +37,7 @@
|
|
|
<view v-if="shop.shopPromotion" class="floor-item-act">
|
|
|
<view class="floor-tags">{{shop.shopPromotion.name}}</view>
|
|
|
</view>
|
|
|
- <view class="title-text tui-skeleton-fillet" @click="goShophome()">{{shop.shopName}}<label class="iconfont icon-jinrudianpu"></label></view>
|
|
|
+ <view class="title-text tui-skeleton-fillet" @click="goShophome(shop.shopID)">{{shop.shopName}}<label class="iconfont icon-jinrudianpu"></label></view>
|
|
|
</view>
|
|
|
<view class="goods-item" v-for="(pros,prosIndex) in shop.orderProductList" :key="prosIndex" @click.stop="detail(order.orderID)">
|
|
|
<view class="goods-pros-t">
|
|
@@ -196,8 +196,8 @@
|
|
|
},
|
|
|
},
|
|
|
methods: {
|
|
|
- goShophome(){
|
|
|
- this.$api.navigateTo('/supplier/pages/user/my-shop')
|
|
|
+ goShophome(id){
|
|
|
+ this.$api.navigateTo(`/supplier/pages/user/my-shop?shopId=${id}`)
|
|
|
},
|
|
|
// 滚动切换标签样式
|
|
|
onChange: function(e) {
|