处理订单列表

This commit is contained in:
2026-01-16 02:04:09 +08:00
parent 1364fb2446
commit ff07af055f
45 changed files with 665 additions and 1772 deletions

View File

@@ -266,33 +266,31 @@
// 默认tab
const current_tab_idx = ref(0);
const current_tab_idx = ref(0);
// 定义tab切换
const tabs_config = [{
title: '进行中',
status: 'all'
},
{
title: '今日',
status: 'payment'
},
{
title: '昨日',
status: 'delivery'
},
{
title: '全部',
status: 'received'
},
]
// 订单列表数据
const dataList = ref([]);
// zp
const paging = ref(null);
// 定义tab切换
const tabs_config = [{
title: '全部',
status: 'all'
},
{
title: '待付款',
status: 'payment'
},
{
title: '待发货',
status: 'delivery'
},
{
title: '待收货',
status: 'received'
},
{
title: '已完成',
status: 'finish'
}
]