公告板
版本库
filestore
活动
搜索
登录
main
/
sunsail-platform-ui
sunsail云平台前端项目工程
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
style(员工附件查询): 入职类型界面文字
luoyb
2021-06-03
0c8c93d4c29c361f1ce7ada86ef0f4ca81201cb1
[sunsail-platform-ui.git]
/
src
/
api
/
data.js
1
2
3
4
5
6
7
8
9
10
11
import request from './request'
// 根据字典类型查询字典数据信息
export function getDicts(dictType) {
const newVar = typeof (dictType)
if (newVar !== 'function') {
return request({
url: 'system/dicItem/type/' + dictType,
method: 'get'
})
}
}