公告板
版本库
filestore
活动
搜索
登录
web
/
crm-web
客户管理系统
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
新增无权限展示页
zuozhengqing
2023-12-12
23811de7f45e5c40136be9dd072b448334db3e66
[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
}
}