refactor: 彻底清除所有openhis痕迹
- 重命名目录: openhis-server-new → healthlink-his-server - 重命名目录: openhis-ui-vue3 → healthlink-his-ui - 重命名Java类: OpenHisApplication → HealthLinkHisApplication - 重命名Java类: OpenHisMiniApp → HealthLinkHisMiniApp - 重命名组件目录: OpenHis → HealthLinkHis - 重命名样式文件: openhis.scss → healthlink-his.scss - 重命名配置: nginx-openhis.conf → nginx-healthlink-his.conf - 更新所有源码引用 (0个残留) - 更新所有文档/脚本/配置中的引用
This commit is contained in:
71
healthlink-his-ui/src/api/techStation/index.js
Normal file
71
healthlink-his-ui/src/api/techStation/index.js
Normal file
@@ -0,0 +1,71 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// ========== 医技执行 ==========
|
||||
|
||||
// 查询待执行列表
|
||||
export function listExecuteOrders(query) {
|
||||
return request({
|
||||
url: '/tech-station/execute/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 执行确认(检查)
|
||||
export function executeExamOrder(applyNo) {
|
||||
return request({
|
||||
url: '/tech-station/execute/exam/' + applyNo,
|
||||
method: 'put'
|
||||
})
|
||||
}
|
||||
|
||||
// 执行确认(检验)
|
||||
export function executeLabOrder(applyNo) {
|
||||
return request({
|
||||
url: '/tech-station/execute/lab/' + applyNo,
|
||||
method: 'put'
|
||||
})
|
||||
}
|
||||
|
||||
// ========== 医技退费审批 ==========
|
||||
|
||||
// 查询待退费审批列表
|
||||
export function listRefundApproveOrders(query) {
|
||||
return request({
|
||||
url: '/tech-station/refund-approve/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 退费审批通过(检查)
|
||||
export function approveExamRefund(applyNo) {
|
||||
return request({
|
||||
url: '/tech-station/refund-approve/approve/exam/' + applyNo,
|
||||
method: 'put'
|
||||
})
|
||||
}
|
||||
|
||||
// 退费审批驳回(检查)
|
||||
export function rejectExamRefund(applyNo) {
|
||||
return request({
|
||||
url: '/tech-station/refund-approve/reject/exam/' + applyNo,
|
||||
method: 'put'
|
||||
})
|
||||
}
|
||||
|
||||
// 退费审批通过(检验)
|
||||
export function approveLabRefund(applyNo) {
|
||||
return request({
|
||||
url: '/tech-station/refund-approve/approve/lab/' + applyNo,
|
||||
method: 'put'
|
||||
})
|
||||
}
|
||||
|
||||
// 退费审批驳回(检验)
|
||||
export function rejectLabRefund(applyNo) {
|
||||
return request({
|
||||
url: '/tech-station/refund-approve/reject/lab/' + applyNo,
|
||||
method: 'put'
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user