公告板
版本库
filestore
活动
搜索
登录
main
/
sunsail-platform-ui
sunsail云平台前端项目工程
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
员工管理界面(在职、离职和智搜的列表、档案、导出)增加了年假天数显示
luoyb
2025-09-23
338c1fc6a3de638d84b60a5da064dceef6f0d775
[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'
})
}
}