修改页面结构

This commit is contained in:
2026-02-02 20:07:37 +08:00
parent 3de5e9ebe9
commit 21f4a0fa96
209 changed files with 41824 additions and 2730 deletions

8
types/orders.uts Normal file
View File

@@ -0,0 +1,8 @@
/**
* 订单统计数据接口
*/
export interface OrderStat {
date: string; // 日期, 例如 "01-04"
totalAmount: number;// 订单金额
orderCount: number; // 订单数量
}