소스 검색

Merge remote-tracking branch 'origin/developerC' into developerD

zhengjinyi 3 년 전
부모
커밋
9c120c90a3
3개의 변경된 파일13개의 추가작업 그리고 4개의 파일을 삭제
  1. 3 0
      components/cm-module/cart-components/index.vue
  2. 5 2
      components/cm-module/orderDetails/goodsList.vue
  3. 5 2
      pages/user/order/order-list.vue

+ 3 - 0
components/cm-module/cart-components/index.vue

@@ -1374,6 +1374,9 @@ export default {
 			})
 		},
 		goSuppile(shop) {//跳转店铺
+			if(shop.shopId == 1161){
+				return
+			}
 			this.$api.navigateTo(`/pages/supplier/user/my-shop?shopId=${shop.shopId}`)
 		},
 		goNavto(url) {

+ 5 - 2
components/cm-module/orderDetails/goodsList.vue

@@ -166,8 +166,11 @@ export default {
 			const userInfo = await this.$api.getStorage()
 			this.vipFlag = userInfo.vipFlag ? userInfo.vipFlag : 0
 		},
-		goShophome(id) {
-			this.$api.navigateTo(`/pages/supplier/user/my-shop?shopId=${id}`)
+		goShophome(shopId) {
+			if(shopId == 1161){
+				return
+			}
+			this.$api.navigateTo(`/pages/supplier/user/my-shop?shopId=${shopId}`)
 		},
 		details(pros) {
 			if (pros.validFlag == 9) {

+ 5 - 2
pages/user/order/order-list.vue

@@ -343,8 +343,11 @@ export default {
 		}
 	},
 	methods: {
-		goShophome(id) {
-			this.$api.navigateTo(`/pages/supplier/user/my-shop?shopId=${id}`)
+		goShophome(shopId) {
+			if(shopId == 1161){
+				return
+			}
+			this.$api.navigateTo(`/pages/supplier/user/my-shop?shopId=${shopId}`)
 		},
 		// 滚动切换标签样式
 		onChange: function(e) {