药品目录前台 up by dh

This commit is contained in:
duhe
2025-02-25 18:09:32 +08:00
parent 10242e6f7c
commit 32e64e84d3
4 changed files with 1388 additions and 7 deletions

View File

@@ -0,0 +1,71 @@
import request from '@/utils/request'
import { parseStrEmpty } from "@/utils/openhis";
// 查询病种目录列表
export function getDiseaseList(query) {
return request({
url: '/datadictionary/disease/information-page',
method: 'get',
params: query
})
}
// 查询病种目录详细
export function getDiseaseOne(id) {
return request({
url: '/datadictionary/disease/information-one',
method: 'get',
params: id
})
}
// 新增病种目录
export function addDisease(data) {
return request({
url: '/datadictionary/disease/information',
method: 'post',
data: data
})
}
// 修改病种目录
export function editDisease(data) {
return request({
url: '/datadictionary/disease/information',
method: 'put',
data: data
})
}
// 删除病种目录
export function delUser(userId) {
return request({
url: '/system/user/' + userId,
method: 'delete'
})
}
// 病种目录分类查询
export function getDiseaseCategory() {
return request({
url: '/datadictionary/disease/information-category',
method: 'get'
})
}
// 修改用户个人信息
export function updateUserProfile(data) {
return request({
url: '/system/user/profile',
method: 'put',
data: data
})
}
// 查询部门下拉树结构
export function deptTreeSelect() {
return request({
url: '/system/user/deptTree',
method: 'get'
})
}