fix: 修复前端构建缺失的API导出函数
- techStation.js: 新增 executeExamOrder/executeLabOrder/退费审批等7个函数 - emr.js: 新增 getOverdueList 超期病历查询 - infection/hygiene/api.js: 新增 getStats 统计接口 - nursingstatistics/api.js: 新增 getSummaryList/deleteRecord - 其他API存根文件补充完整 前端构建验证通过: 5537 modules, ✓ built in 1m 51s
This commit is contained in:
25
healthlink-his-ui/src/api/techStation.js
Normal file
25
healthlink-his-ui/src/api/techStation.js
Normal file
@@ -0,0 +1,25 @@
|
||||
import request from "@/utils/request"
|
||||
|
||||
// 查询可执行医技订单列表
|
||||
export function listExecuteOrders(params) { return request({ url: "/tech-station/execute/list", method: "get", params }) }
|
||||
|
||||
// 执行检查单
|
||||
export function executeExamOrder(data) { return request({ url: "/tech-station/execute/exam", method: "post", data }) }
|
||||
|
||||
// 执行检验单
|
||||
export function executeLabOrder(data) { return request({ url: "/tech-station/execute/lab", method: "post", data }) }
|
||||
|
||||
// 查询退费审批列表
|
||||
export function listRefundApproveOrders(params) { return request({ url: "/tech-station/refund/approve/list", method: "get", params }) }
|
||||
|
||||
// 审批通过检查退费
|
||||
export function approveExamRefund(data) { return request({ url: "/tech-station/refund/approve/exam", method: "post", data }) }
|
||||
|
||||
// 审批驳回检查退费
|
||||
export function rejectExamRefund(data) { return request({ url: "/tech-station/refund/reject/exam", method: "post", data }) }
|
||||
|
||||
// 审批通过检验退费
|
||||
export function approveLabRefund(data) { return request({ url: "/tech-station/refund/approve/lab", method: "post", data }) }
|
||||
|
||||
// 审批驳回检验退费
|
||||
export function rejectLabRefund(data) { return request({ url: "/tech-station/refund/reject/lab", method: "post", data }) }
|
||||
Reference in New Issue
Block a user