公告板
版本库
filestore
活动
搜索
登录
main
/
sunsail-platform-ui
sunsail云平台前端项目工程
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
Merge remote-tracking branch 'origin/master'
luoyb
2021-03-06
9bda7c9508b724a6ae0c1c2ffcfa7467925b8d5b
[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'
})
}
}