|
@@ -41,8 +41,16 @@ export default {
|
|
|
status: 'loadmore',
|
|
|
noDataText: '暂无数据',
|
|
|
tabList: [
|
|
|
+ {
|
|
|
+ dispName: '全部',
|
|
|
+ code: 1
|
|
|
+ },
|
|
|
{
|
|
|
dispName: '待处理',
|
|
|
+ code: 5
|
|
|
+ },
|
|
|
+ {
|
|
|
+ dispName: '进行中',
|
|
|
code: 4
|
|
|
},
|
|
|
{
|
|
@@ -53,10 +61,6 @@ export default {
|
|
|
dispName: '已过期',
|
|
|
code: 2
|
|
|
},
|
|
|
- {
|
|
|
- dispName: '全部',
|
|
|
- code: 1
|
|
|
- }
|
|
|
],
|
|
|
typeId:'1',
|
|
|
current: 0,
|
|
@@ -159,6 +163,9 @@ export default {
|
|
|
if(status == '待处理'){
|
|
|
return 'dcl'
|
|
|
}
|
|
|
+ if(status == '进行中'){
|
|
|
+ return 'jxz'
|
|
|
+ }
|
|
|
if(status == '已完成'){
|
|
|
return 'ywc'
|
|
|
}
|
|
@@ -180,7 +187,7 @@ page {
|
|
|
flex-direction: column;
|
|
|
.tab-body {
|
|
|
.check-list {
|
|
|
- height: calc(100vh - 120px);
|
|
|
+ height: calc(100vh - 50px);
|
|
|
}
|
|
|
.check-order-list {
|
|
|
background: #ffffff;
|
|
@@ -213,6 +220,9 @@ page {
|
|
|
.dcl {
|
|
|
color: #f72525;
|
|
|
}
|
|
|
+ .jxz{
|
|
|
+ color: #007AFF;
|
|
|
+ }
|
|
|
.ygq {
|
|
|
color: #999;
|
|
|
}
|