This commit is contained in:
Your Name
2026-03-27 18:06:12 +08:00
parent 9160c36735
commit 099bc1dd22
645 changed files with 276473 additions and 957 deletions
+36
View File
@@ -0,0 +1,36 @@
import request from '@/utils/request'
/**
* 药品库列表
*/
export function medicineLists(params: any) {
return request.get({ url: '/doctor.medicine/lists', params })
}
/**
* 添加药品
*/
export function medicineAdd(params: any) {
return request.post({ url: '/doctor.medicine/add', params })
}
/**
* 编辑药品
*/
export function medicineEdit(params: any) {
return request.post({ url: '/doctor.medicine/edit', params })
}
/**
* 删除药品
*/
export function medicineDelete(params: any) {
return request.post({ url: '/doctor.medicine/delete', params })
}
/**
* 药品详情
*/
export function medicineDetail(params: any) {
return request.get({ url: '/doctor.medicine/detail', params })
}