Commit aa731373 authored by Facius's avatar Facius

feat: 15、“待签收”状态放在第一列位置,其次“待审核”,然后“待发货”,再是“已取消”,“已驳回”,最后是“全部”。

parent ba2a7cb6
......@@ -79,11 +79,11 @@
computed: {
// 不传值 全部;待签收 15;待发货 10;待审核 1;已驳回 -2;已签收 20;已取消 -1;
list() {
return [{
'name': '全部',
'status': null
return [
{
'name': '待签收',
'status': 15
},
{
'name': '待审核',
'status': 1
......@@ -93,13 +93,13 @@
'status': 10
},
{
'name': '待签收',
'status': 15
'name': '已取消',
'status': -1
},
// {
// 'name': '已签收',
// 'status': 20
// }
{
'name': '全部',
'status': null
}
]
},
// 当下tab
......
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