公告板
版本库
filestore
活动
搜索
登录
web
/
crm-web
客户管理系统
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
新建选择负责人修改
yangfeng
2023-11-30
6050b02cd808a9af2070d61e3b278e3407b845ca
[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
}
}