mabaoyi 8 ماه پیش
والد
کامیت
448e289a50

+ 26 - 3
pageD/afterSalesDetail/afterSalesDetail.vue

@@ -1,10 +1,27 @@
 <template>
   <view class="page">
-    <view class="top">
+    <view
+      class="top"
+      v-if="
+        orderInformation.goods[0].refund.status == '0' ||
+        orderInformation.goods[0].refund.status == '3'
+      "
+    >
       <view class="top-title"> 请处理退款申请 </view>
       <view class="top-detail"> 如果您同意,请点击“同意退款” </view>
     </view>
-
+    <view
+      class="top"
+      v-else-if="orderInformation.goods[0].refund.status == '2'"
+    >
+      <view class="top-title"> 您拒绝了退款申请 </view>
+      <view class="top-detail">
+        商家:{{ orderInformation.goods[0].refund.reason }}
+      </view>
+    </view>
+    <view class="top" v-else>
+      <view class="top-title"> 您同意了退款申请 </view>
+    </view>
     <!-- 地址信息 -->
     <view class="address">
       <view class="name-phone">
@@ -29,7 +46,13 @@
     <RefusePopup :show="show" @close="close" />
     <AgreePopup :agreeShow="agreeShow" @close="close" />
 
-    <view class="footer">
+    <view
+      class="footer"
+      v-if="
+        orderInformation.goods[0].refund.status == '0' ||
+        orderInformation.goods[0].refund.status == '3'
+      "
+    >
       <button class="btn-1" @click="refuseApplication">拒绝申请</button
       ><button @click="agreeShow = true" class="btn-2">同意退款</button>
     </view>

+ 3 - 1
pageD/afterSalesDetail/component/applicationInformation.vue

@@ -3,7 +3,9 @@
     <view class="title"> 申请信息 </view>
     <view class="_label-1">
       <text>是否收货</text>
-      <text class="result">未收货</text>
+      <text class="result">{{
+        orderInformation.is_received == 0 ? "已收货" : "未收货"
+      }}</text>
     </view>
     <view class="_label-1">
       <text>售后说明</text>

+ 6 - 4
pageD/components/goodsInformation.vue

@@ -10,10 +10,12 @@
         "
       >
         <view class="text-1" v-if="itemInfo.review_status == 0"> 审核中 </view>
-        <view class="text-1" v-if="itemInfo.review_status == 2">
+        <view class="text-1" v-else-if="itemInfo.review_status == 2">
           审核失败
         </view>
-        <view class="text-1" v-if="itemInfo.status == 'down'"> 已下架 </view>
+        <view class="text-1" v-else-if="itemInfo.status == 'down'">
+          已下架
+        </view>
       </view>
       <view class="content-right">
         <view class="goods-title">
@@ -67,8 +69,8 @@
         下架商品
       </button>
       <button class="btn-1" v-if="itemInfo.review_status == 0">查看详情</button>
-      <button class="btn-2" v-if="itemInfo.review_status == 2">重新提交</button>
-      <button class="btn-1" v-if="itemInfo.status == 'down'">编辑</button>
+      <!-- <button class="btn-2" v-if="itemInfo.review_status == 2">重新提交</button> -->
+      <!-- <button class="btn-1" v-if="itemInfo.status == 'down'">编辑</button> -->
       <button class="btn-1" v-if="itemInfo.status == 'down'">上架商品</button>
     </view>
     <view class="btn-list" v-if="!batch && productAndCommodity == 'commodity'">

+ 8 - 3
pageD/productDetails/productDetails.vue

@@ -37,9 +37,14 @@
 
     <view class="goods-detail"> 商品详情 </view>
     <view class="detail">
-      <!-- v-for="item in commodityDetail.images.split(',')" -->
-
-      <image class="detail-img" :src="commodityDetail.images" mode=""></image>
+      <!-- -->
+      <!-- <view v-html="commodityDetail.detail_cn"></view> -->
+      <image
+        class="detail-img"
+        v-for="item in commodityDetail.images.split(',')"
+        :src="item"
+        mode=""
+      ></image>
     </view>
 
     <view class="footer">