|
|
@@ -63,7 +63,18 @@
|
|
|
</view>
|
|
|
<view class="order-info_box" v-if="detailInfo.status != 1 && detailInfo.status!=5">
|
|
|
<view>付款方式:</view>
|
|
|
- <view>{{ detailInfo.payWay==0?'微信':detailInfo.payWay==1?'支付宝':detailInfo.payWay==2?'余额':detailInfo.payWay==4?'现金':detailInfo.payWay==5?'银行卡':'--' }}</view>
|
|
|
+ <view>
|
|
|
+ <text :class="[detailInfo.payWay==3 ? 'red-mind' : '']">
|
|
|
+ {{ detailInfo.payWay==0?'微信':detailInfo.payWay==1?'支付宝':detailInfo.payWay==2?'余额':detailInfo.payWay==4?'现金':detailInfo.payWay==5?'银行卡':detailInfo.payWay==3?'欠款':'--' }}
|
|
|
+ </text>
|
|
|
+ <text v-if="Number(detailInfo.clearId)>0" style="color:#3385ff;font-weight:bold;">(已结清)</text>
|
|
|
+ </view>
|
|
|
+ <view class="price" v-if="detailInfo.clearId > 0">
|
|
|
+ <button @click="pageTo({url: '/admin/clear/customInfo',query: {id: detailInfo.clearId}})" class="admin-button-com">查看结账单</button>
|
|
|
+ </view>
|
|
|
+ <view class="price" v-if="detailInfo.debt == 1">
|
|
|
+ <button @click='pageTo({url:"/pagesArrears/details",query: {id: detailInfo.customId}})' class="admin-button-com">全部欠款单</button>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
<view class="order-info_box">
|
|
|
<view>订单状态:</view>
|
|
|
@@ -86,24 +97,6 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
- <view class="bills-info_box content-box" style="margin-top:25upx;">
|
|
|
- <view class="order-info_box" v-if="detailInfo.debt == 1">
|
|
|
- <view>订单状态:</view>
|
|
|
- <view style="color:red;font-weight:bold;">欠款</view>
|
|
|
- <view class="price">
|
|
|
- <button @click='pageTo({url:"/pagesArrears/details",query: {id: detailInfo.customId}})' class="admin-button-com">全部欠款单</button>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <view class="order-info_box" v-else>
|
|
|
- <view>订单状态:</view>
|
|
|
- <view v-if="detailInfo.clearId > 0">已结清</view>
|
|
|
- <view class="price" v-if="detailInfo.clearId > 0">
|
|
|
- <button @click="pageTo({url: '/admin/clear/customInfo',query: {id: detailInfo.clearId}})" class="admin-button-com">查看结账单</button>
|
|
|
- </view>
|
|
|
- <view v-if="detailInfo.clearId == 0">--</view>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
-
|
|
|
<view class="content-box shipping-address" v-if="detailInfo.expressProgress!=''">
|
|
|
<view> 配送进展:<text>{{ detailInfo.expressProgress.progressName }}</text> </view>
|
|
|
<i class="iconfont iconqishouyinying"></i>
|
|
|
@@ -680,6 +673,10 @@ export default {
|
|
|
margin-left: 12upx;
|
|
|
}
|
|
|
}
|
|
|
+ .red-mind{
|
|
|
+ color:red;
|
|
|
+ font-weight:bold;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
.content-box {
|