12345678910111213141516171819202122232425262728 |
- import request from '@/utils/request'
- // 获取部门列表
- export const getDepartmentList = (data) => {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/user/dept/tree`,
- method: 'post',
- data
- })
- }
- // 标准部门科室管理
- export const deptTree = (data) => {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/standard/dept/tree`,
- method: 'POST',
- data
- })
- }
- // 修改配置
- export function ruleConfigUpdateConfig(data) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/dataLabel/ruleConfig/updateConfig`,
- method: 'POST',
- data
- })
- }
|