shish 1 день назад
Родитель
Сommit
e682b0a7b2
1 измененных файлов с 9 добавлено и 41 удалено
  1. 9 41
      hdApp/src/pagesPurchase/refundDetail.vue

+ 9 - 41
hdApp/src/pagesPurchase/refundDetail.vue

@@ -41,6 +41,15 @@
               {{ refundData.info.status==0?'待审核':refundData.info.status==1?'已通过':refundData.info.status==2?'已驳回':refundData.info.status==3?'已取消':'' }}
             </div>
 					</tui-list-cell>
+          <!-- 仅隔天展示,样式与金额/状态同套 tui-list-cell -->
+          <tui-list-cell class="line-cell" :hover="false" v-if="isNextDayRefund">
+            <div class="tui-title">售后类型</div>
+            <div class="detail-price_box" style="color:#3385ff;">隔天售后</div>
+          </tui-list-cell>
+          <tui-list-cell class="line-cell" :hover="false" v-if="refundData.info">
+            <div class="tui-title">返回方式</div>
+            <div class="detail-price_box">{{ fundReturnText }}</div>
+          </tui-list-cell>
           <tui-list-cell class="line-cell" :hover="false" v-if="refundData.info.rejectReason !=''">
             <div class="tui-title">原因</div>
             <div class="detail-price_box">{{ refundData.info.rejectReason }}</div>
@@ -50,17 +59,6 @@
             <div class="detail-price_box">{{ refundData.info.remark }}</div>
           </tui-list-cell>
 				</div>
-        <!-- 与 ghsApp refundDetail 同款行样式:售后类型 / 返回方式 -->
-        <view class="refund-meta" v-if="refundData.info">
-          <view class="refund-row" v-if="isNextDayRefund">
-            <view class="refund-label">售后类型</view>
-            <view class="refund-value" style="color:#3385ff;">隔天售后</view>
-          </view>
-          <view class="refund-row">
-            <view class="refund-label">返回方式</view>
-            <view class="refund-value">{{ fundReturnText }}</view>
-          </view>
-        </view>
 			</view>
       <block v-if="refundData.info && refundData.info.smallImgList && !$util.isEmpty(refundData.info.smallImgList)">
         <view style="background-color: white;border-radius: 10upx;height:200upx;">
@@ -390,36 +388,6 @@ export default {
       color: #ff2842;
     }
   }
-  /* 对齐 ghsApp pagesOrder/refundDetail 的售后类型 / 返回方式行 */
-  .refund-meta {
-    padding: 0 24upx 8upx;
-    border-top: 1upx solid #f0f2f5;
-  }
-  .refund-row {
-    display: flex;
-    flex-direction: row;
-    align-items: center;
-    padding: 22upx 0;
-    border-bottom: 1upx solid #f0f2f5;
-    &:last-child {
-      border-bottom: none;
-    }
-  }
-  .refund-label {
-    width: 168upx;
-    flex-shrink: 0;
-    font-size: 28upx;
-    color: #909399;
-    line-height: 42upx;
-  }
-  .refund-value {
-    flex: 1;
-    min-width: 0;
-    font-size: 28upx;
-    color: #303133;
-    line-height: 42upx;
-    text-align: right;
-  }
 }
 .app-footer {
   display: flex;