Commit 1b277a63 authored by Facius's avatar Facius

已完成状态

parent e4b1b532
......@@ -104,9 +104,9 @@
'width': '100%',
}
},
// 待签收 15;待发货 10;待审核 1;已取消 -1;已驳回 -2;已签收 20
// 待签收 15;待发货 10;待审核 1;已取消 -1;已驳回 -2;已签收 20; 已完成 100
title() {
return this.titles[String(this.info.status)]
return this.titles[String(this.info.status)] || this.info.statusText
},
titles() {
// 待签收 15 待发货 10 待审核 1 已取消 -1 已驳回 -2 已签收 20
......@@ -116,7 +116,8 @@
'15': '代签收',
'20': '已签收',
'-2': '审核未通过',
'-1': '已取消'
'-1': '已取消',
'100': '已完成'
}
},
titleColor() {
......
......@@ -9,8 +9,10 @@
<swiper class="swiper" :indicator-dots="true" style="height: 100%;" :current="currentIndex">
<swiper-item v-for="(item, index) in list" :key="index">
<view class="cell-view">
<view class="shadow-view">
<AppliedCell @operate="handleOperate" @express="handleClickExpress" @action="handleClickCell" :info="item" :type="vertical" class="applied-cell"></AppliedCell>
</view>
</view>
</swiper-item>
</swiper>
</view>
......@@ -147,9 +149,9 @@
.cell-view {
height: 100%;
padding-bottom: 100rpx;
display: flex;
flex-direction: column;
.applied-cell {
// display: flex;
// flex-direction: column;
.shadow-view{
border-radius: 12rpx;
margin:30rpx;
height: 100%;
......
......@@ -86,9 +86,9 @@
'width': '100%',
}
},
// 待签收 15;待发货 10;待审核 1;已取消 -1;已驳回 -2;已签收 20
// 待签收 15;待发货 10;待审核 1;已取消 -1;已驳回 -2;已签收 20; 100 已完成
title() {
return this.titles[String(this.info.status)]
return this.titles[String(this.info.status)] || this.info.statusText
},
titles() {
return {
......@@ -97,7 +97,8 @@
'15': '代签收',
'20': '已签收',
'-2': '审核未通过',
'-1': '已取消'
'-1': '已取消',
'100': '已完成'
}
},
total() { // 合计
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment