|
@@ -145,21 +145,26 @@
|
|
|
if(res.status == 200){
|
|
|
this.info = res.data
|
|
|
this.partList = res.data.detailList || []
|
|
|
- if(this.info.billState == 'WAIT'){
|
|
|
- this.statusText = '待取货'
|
|
|
+ if(this.info.billState == 'WAIT_AUDIT'){
|
|
|
+ this.statusText = '待审核'
|
|
|
this.statusIcon = 'hourglass-half-fill'
|
|
|
- this.statusMessage = '请及时安排,以免逾期'
|
|
|
- }
|
|
|
- if(this.info.billState == 'FINISH'){
|
|
|
- this.statusText = '已取货'
|
|
|
- this.statusIcon = 'checkmark-circle'
|
|
|
this.statusMessage = ''
|
|
|
}
|
|
|
- if(this.info.billState == 'CLOSE'){
|
|
|
- this.statusText = '已取消'
|
|
|
+ if(this.info.billState == 'AUDIT_REJECT'){
|
|
|
+ this.statusText = '审核不通过'
|
|
|
this.statusIcon = 'close-circle'
|
|
|
this.statusMessage = ''
|
|
|
}
|
|
|
+ if(this.info.billState == 'WAIT_OUT_WAREHOUSE'){
|
|
|
+ this.statusText = '待收货'
|
|
|
+ this.statusIcon = 'hourglass-half-fill'
|
|
|
+ this.statusMessage = ''
|
|
|
+ }
|
|
|
+ if(this.info.billState == 'FINISH'){
|
|
|
+ this.statusText = '已完结'
|
|
|
+ this.statusIcon = 'checkmark-circle'
|
|
|
+ this.statusMessage = ''
|
|
|
+ }
|
|
|
}
|
|
|
})
|
|
|
},
|
|
@@ -236,7 +241,6 @@
|
|
|
}
|
|
|
}
|
|
|
.contHead {
|
|
|
- background-color: white;
|
|
|
.statusH{
|
|
|
> view{
|
|
|
padding: 10upx 12%;
|