- 修复 CommonServiceImpl 中返回空集合而非 null 的问题 - 添加新的国际化错误消息用于目录不存在的情况 - 重构门诊挂号查询的时间和状态过滤条件为动态SQL - 更新支付对账分组字段以包含合同编号 - 调整会诊相关API端点路径和请求方法 - 优化技术工作站退费审批接口路径和参数传递方式 - 重构待处理EMR页面跳转逻辑,移除确认对话框直接跳转住院医生工作站
26 lines
1.3 KiB
JavaScript
26 lines
1.3 KiB
JavaScript
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/approve/exam/" + data.applyNo, method: "put", data }) }
|
|
|
|
// 审批驳回检查退费
|
|
export function rejectExamRefund(data) { return request({ url: "/tech-station/refund-approve/reject/exam/" + data.applyNo, method: "put", data }) }
|
|
|
|
// 审批通过检验退费
|
|
export function approveLabRefund(data) { return request({ url: "/tech-station/refund-approve/approve/lab/" + data.applyNo, method: "put", data }) }
|
|
|
|
// 审批驳回检验退费
|
|
export function rejectLabRefund(data) { return request({ url: "/tech-station/refund-approve/reject/lab/" + data.applyNo, method: "put", data }) }
|