first commit

This commit is contained in:
Your Name
2026-09-08 11:40:15 +08:00
commit a5353f7eb5
9568 changed files with 1646214 additions and 0 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 })
}