|
|
@@ -10,6 +10,14 @@
|
|
|
<text class="warning-action">查看</text>
|
|
|
</view>
|
|
|
|
|
|
+ <!-- 支付方式提示:线上/余额/挂账/线下 -->
|
|
|
+ <view class="tip-section">
|
|
|
+ <text v-if="orderInfo.onlinePay == 2" class="tip-text online-tip">此单线上付款,售后钱会原路自动退回给客户</text>
|
|
|
+ <text v-else-if="orderInfo.payWay == 2" class="tip-text online-tip">此单余额付款,售后钱会原路自动退回到客户余额</text>
|
|
|
+ <text v-else-if="orderInfo.payWay == 3 || Number(orderInfo.debtPrice)>0" class="tip-text debt-tip">此单挂账,售后挂账金额会自动减少</text>
|
|
|
+ <text v-else class="tip-text offline-tip">此单线下付款,售后请确认退回方式</text>
|
|
|
+ </view>
|
|
|
+
|
|
|
<!-- 退款方式选择卡片 -->
|
|
|
<view class="card-section">
|
|
|
<view class="section-title">
|
|
|
@@ -186,14 +194,6 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
- <!-- 提示信息 -->
|
|
|
- <view class="tip-section">
|
|
|
- <text v-if="orderInfo.onlinePay == 2" class="tip-text online-tip">此单线上付款,提交后,钱会原路自动退回给客户</text>
|
|
|
- <text v-else-if="orderInfo.payWay == 2" class="tip-text online-tip">此单余额付款,提交后,钱会原路自动退回到客户余额</text>
|
|
|
- <text v-else-if="orderInfo.payWay == 3 || Number(orderInfo.debtPrice)>0" class="tip-text debt-tip">此单为欠款单,提交后,欠款金额会自动减少</text>
|
|
|
- <text v-else class="tip-text offline-tip">此单线下付款,提交后请确认退回方式</text>
|
|
|
- </view>
|
|
|
-
|
|
|
<!-- 底部操作按钮 -->
|
|
|
<view class="bottom-actions">
|
|
|
<button class="action-btn cancel-btn" @tap="cancelRefund">取消</button>
|
|
|
@@ -903,15 +903,15 @@ export default {
|
|
|
resize: none;
|
|
|
}
|
|
|
|
|
|
-// 提示信息
|
|
|
+// 支付方式提示(页顶)
|
|
|
.tip-section {
|
|
|
margin: 20upx;
|
|
|
- padding: 20upx;
|
|
|
+ padding: 0 0 0;
|
|
|
border-radius: 12upx;
|
|
|
|
|
|
.tip-text {
|
|
|
display: block;
|
|
|
- font-size: 32upx;
|
|
|
+ font-size: 30upx;
|
|
|
line-height: 1.5;
|
|
|
font-weight: 600;
|
|
|
|