|
@@ -243,7 +243,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="right"><text class="iconfont icon-xiayibu"></text></view>
|
|
|
+ <view class="right" v-if="!isShowCaimeiShop"><text class="iconfont icon-xiayibu"></text></view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<!-- 商品详情 -->
|
|
@@ -730,6 +730,7 @@ export default {
|
|
|
plain: false
|
|
|
}
|
|
|
],
|
|
|
+ isShowCaimeiShop:false
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
@@ -828,6 +829,9 @@ export default {
|
|
|
this.shop = response.data.shop
|
|
|
this.shopId = response.data.shopId
|
|
|
this.product = response.data
|
|
|
+ if(this.shopId == 10235){
|
|
|
+ this.isShowCaimeiShop = true
|
|
|
+ }
|
|
|
if (this.product.userLike && this.product.userLike == 1) {
|
|
|
this.collectionType = true
|
|
|
} else {
|
|
@@ -1346,7 +1350,9 @@ export default {
|
|
|
},
|
|
|
goSupplier() {
|
|
|
//跳供应商资料页
|
|
|
- this.$api.navigateTo('/pages/supplier/user/my-shop?shopId=' + this.shopId)
|
|
|
+ if(!this.isShowCaimeiShop){
|
|
|
+ this.$api.navigateTo('/pages/supplier/user/my-shop?shopId=' + this.shopId)
|
|
|
+ }
|
|
|
},
|
|
|
discard() {
|
|
|
//丢弃
|