门诊号码管理维护界面

This commit is contained in:
2025-11-06 09:11:26 +08:00
committed by wzk
parent 9997f4f7c9
commit 5a99fe8234
3 changed files with 556 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
import request from '@/utils/request'
export function listOutpatientNo(query) {
return request({
url: '/business-rule/outpatient-no/page',
method: 'get',
params: query,
})
}
export function addOutpatientNo(data) {
return request({
url: '/business-rule/outpatient-no',
method: 'post',
data,
})
}
export function updateOutpatientNo(data) {
return request({
url: '/business-rule/outpatient-no',
method: 'put',
data,
})
}
export function deleteOutpatientNo(params) {
return request({
url: '/business-rule/outpatient-no',
method: 'delete',
params,
})
}