Signed-off-by: chy <chy@163.com>

This commit is contained in:
chy
2026-02-02 23:17:44 +08:00
parent e10f2f058c
commit a49878384e
774 changed files with 249821 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
import request from '@/config/axios'
//获取字典表格选择器配置
export const getDicTableConfig = (tableId, dicConfigStr) => {
return request.post({
url: `/lideeyunji/dbform/get/dict-table-web-config/${tableId}`, data: {
lideeYunji_dictTableField: dicConfigStr
}
})
}
//获取字典表格选择器值回显文本
export const getDicTableText = (data) => {
return request.post({ url: `/lideeyunji/dbform/get/table-label`, data })
}
//获取用户选择器列表数据
export const getUserSelectList = (data) => {
return request.post({ url: `/lideeyunji/adapter/user/list`, data })
}
//获取用户选择器的部门列表
export const getUserSelectDeptList = (type) => {
return request.get({ url: `/lideeyunji/adapter/dept/list?type=${type}` })
}
//获取用户选择器的角色列表
export const getUserSelectRoleList = () => {
return request.get({ url: `/lideeyunji/adapter/role/list` })
}