소스 검색

特殊商品退货须知

yuwenjun1997 2 년 전
부모
커밋
b860f331f2
4개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 1
      pages/goods/components/cm-return-instructions.vue
  2. 1 1
      pages/goods/product.vue
  3. 1 1
      pages/user/order/create-order.vue
  4. 1 1
      pages/user/order/order-details.vue

+ 1 - 1
pages/goods/components/cm-return-instructions.vue

@@ -2,7 +2,7 @@
     <view class="goods-return-instructions">
         <view class="section" @click="onShowDetail">
             <view class="label">特殊商品退货须知</view>
-            <view class="iconfont icon-chakangengduo more"></view>
+            <view class="iconfont icon-xiayibu more"></view>
         </view>
         <tui-bottom-popup backgroundColor="#fff" :height="400"  :show="popupShow">
         	<view class="popup-content">

+ 1 - 1
pages/goods/product.vue

@@ -950,7 +950,7 @@ export default {
 					this.queryProductDetilsCoupons()
 					this.getCommodityCombinationList()
                     // 特殊商品退货须知
-                    this.returnGoodsStutas = response.data.returnGoodsStutas === 2 // 1:可以 2:不可以
+                    this.returnGoodsStutas = response.data.returnGoodsStutas && response.data.returnGoodsStutas === 2 // 1:可以 2:不可以
                     this.helpContent = response.data.helpContent
                     
 					setTimeout(() => {

+ 1 - 1
pages/user/order/create-order.vue

@@ -348,7 +348,7 @@
 				this.totalDiscountAmount = this.reducedPrice + this.couponAmount
 				this.postageParam.skuIds = this.getProductIds(data.list)
                 // 特殊商品退货须知
-                this.returnGoodsStutas = data.returnGoodsStutas === 2 // 1:可以 2:不可以
+                this.returnGoodsStutas = data.returnGoodsStutas && data.returnGoodsStutas === 2 // 1:可以 2:不可以
                 this.helpContent = data.helpContent
 				this.getAddressData()
 			},

+ 1 - 1
pages/user/order/order-details.vue

@@ -277,7 +277,7 @@ export default {
 					this.returnedPurchaseFee = data.order.returnedPurchaseFee
 					this.clauseData = data.clause
                     // 特殊商品退货须知
-                    this.returnGoodsStutas = data.returnGoodsStutas === 2 // 1:可以 2:不可以
+                    this.returnGoodsStutas = data.returnGoodsStutas && data.returnGoodsStutas === 2 // 1:可以 2:不可以
                     this.helpContent = data.helpContent
 					if (
 						this.information.orderSubmitType == 0 ||