加上售中下单逻辑,修改账号渠道,进粉统计的渠道和下单时保持一致

This commit is contained in:
xiezhijun
2021-06-01 19:24:40 +08:00
parent 783fd6fe3b
commit 77a8668b5d
23 changed files with 474 additions and 70 deletions

View File

@ -25,6 +25,29 @@ export const orderCountTypeArray = [
}
]
//订单次数加拆分类型
export const orderCountExtendedTypeArray = [
{
value: 0,
label: "一开单",
children: orderMoneyTypeArray
},{
value: 1,
label: "二开单",
children: orderMoneyTypeArray
},
{
value: 2,
label: "一开单(拆分)",
children: orderMoneyTypeArray
},
{
value: 3,
label: "二开单(拆分)",
children: orderMoneyTypeArray
}
]
//订单类型(订单新增)
export const orderTypeArray = [
{
@ -47,6 +70,11 @@ export const orderTypeArray = [
label: "全款单"
}]
}]
},
{
value: 3,
label: "售中单",
children: orderCountExtendedTypeArray
}
]