feat: crm初步

This commit is contained in:
砂糖
2025-12-16 09:27:37 +08:00
parent 8f110f6a58
commit dbc9ac727a
15 changed files with 1328 additions and 45 deletions

View File

@@ -0,0 +1,21 @@
// 订单状态
export const ORDER_STATUS = {
'待生产': 0,
'生产中': 1,
'部分发货': 2,
'已发货': 3,
'已签收': 4,
}
// 预订单状态
export const PRE_ORDER_STATUS = {
'待审核': 0,
'已审核': 1,
'已取消': 2,
}
// 订单类型
export const ORDER_TYPE = {
'预订单': 0,
'正式订单': 1,
}