公告板
版本库
filestore
活动
搜索
登录
web
/
crm-web
客户管理系统
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
销售明细单、销售退货单选择产品逻辑修改及新增字段
yangfeng
2023-10-25
48adbb5e7759f33efb0a97c8baf22aaebba7987a
[web/crm-web.git]
/
src
/
api
/
data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 销售明细 交付类型
const deliveryType = [
{
name: "一次发货",
id: 1
},
{
name: "多次发货",
id: 2
}
]
export const getDataByType = (type) => {
if (type == "deliveryType") {
return deliveryType
}
}