Commit 1b277a63 authored by Facius's avatar Facius

已完成状态

parent e4b1b532
...@@ -104,9 +104,9 @@ ...@@ -104,9 +104,9 @@
'width': '100%', 'width': '100%',
} }
}, },
// 待签收 15;待发货 10;待审核 1;已取消 -1;已驳回 -2;已签收 20 // 待签收 15;待发货 10;待审核 1;已取消 -1;已驳回 -2;已签收 20; 已完成 100
title() { title() {
return this.titles[String(this.info.status)] return this.titles[String(this.info.status)] || this.info.statusText
}, },
titles() { titles() {
// 待签收 15 待发货 10 待审核 1 已取消 -1 已驳回 -2 已签收 20 // 待签收 15 待发货 10 待审核 1 已取消 -1 已驳回 -2 已签收 20
...@@ -116,7 +116,8 @@ ...@@ -116,7 +116,8 @@
'15': '代签收', '15': '代签收',
'20': '已签收', '20': '已签收',
'-2': '审核未通过', '-2': '审核未通过',
'-1': '已取消' '-1': '已取消',
'100': '已完成'
} }
}, },
titleColor() { titleColor() {
......
...@@ -8,8 +8,10 @@ ...@@ -8,8 +8,10 @@
<view class="list-content"> <view class="list-content">
<swiper class="swiper" :indicator-dots="true" style="height: 100%;" :current="currentIndex"> <swiper class="swiper" :indicator-dots="true" style="height: 100%;" :current="currentIndex">
<swiper-item v-for="(item, index) in list" :key="index"> <swiper-item v-for="(item, index) in list" :key="index">
<view class="cell-view"> <view class="cell-view">
<AppliedCell @operate="handleOperate" @express="handleClickExpress" @action="handleClickCell" :info="item" :type="vertical" class="applied-cell"></AppliedCell> <view class="shadow-view">
<AppliedCell @operate="handleOperate" @express="handleClickExpress" @action="handleClickCell" :info="item" :type="vertical" class="applied-cell"></AppliedCell>
</view>
</view> </view>
</swiper-item> </swiper-item>
</swiper> </swiper>
...@@ -147,9 +149,9 @@ ...@@ -147,9 +149,9 @@
.cell-view { .cell-view {
height: 100%; height: 100%;
padding-bottom: 100rpx; padding-bottom: 100rpx;
display: flex; // display: flex;
flex-direction: column; // flex-direction: column;
.applied-cell { .shadow-view{
border-radius: 12rpx; border-radius: 12rpx;
margin:30rpx; margin:30rpx;
height: 100%; height: 100%;
......
...@@ -86,9 +86,9 @@ ...@@ -86,9 +86,9 @@
'width': '100%', 'width': '100%',
} }
}, },
// 待签收 15;待发货 10;待审核 1;已取消 -1;已驳回 -2;已签收 20 // 待签收 15;待发货 10;待审核 1;已取消 -1;已驳回 -2;已签收 20; 100 已完成
title() { title() {
return this.titles[String(this.info.status)] return this.titles[String(this.info.status)] || this.info.statusText
}, },
titles() { titles() {
return { return {
...@@ -97,7 +97,8 @@ ...@@ -97,7 +97,8 @@
'15': '代签收', '15': '代签收',
'20': '已签收', '20': '已签收',
'-2': '审核未通过', '-2': '审核未通过',
'-1': '已取消' '-1': '已取消',
'100': '已完成'
} }
}, },
total() { // 合计 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