V19 Flyway迁移 — 7张新表: - anesthesia_specimen: 麻醉标本管理(采集/送检/病理报告) - anesthesia_postop_followup: 术后随访(24H/48H/72H) - anesthesia_quality_control: 麻醉质控(出血量/并发症/ASA分级) - lab_internal_qc: 检验室内质控(靶值/实测值/CV%/Westgard规则) - lab_external_eqa: 检验室间质评(偏差率/合格判定) - radiology_urgent_report: 检查紧急报告(紧急原因/通知状态) - radiology_statistics: 检查统计日报(总量/阳性率/出报告时间) 后端Controller: - AnesthesiaEnhancedController: 标本管理+术后随访+麻醉质控 - LabEnhancedController: 室内质控+室间质评+统计 - RadiologyEnhancedController: 紧急报告+检查统计 前端页面: - anesthesiaenhanced: Tab页(标本管理/术后随访/麻醉质控) - labenhanced: Tab页(室内质控/室间质评) - radiologyenhanced: Tab页(紧急报告/检查统计) 所有模块编译通过 (mvn clean compile -DskipTests)
7 lines
589 B
JavaScript
7 lines
589 B
JavaScript
import request from '@/utils/request'
|
|
export function getInternalQcPage(p){return request({url:'/lab-enhanced/internal-qc/page',method:'get',params:p})}
|
|
export function addInternalQc(d){return request({url:'/lab-enhanced/internal-qc/add',method:'post',data:d})}
|
|
export function getQcStats(){return request({url:'/lab-enhanced/internal-qc/stats',method:'get'})}
|
|
export function getExternalEqaPage(p){return request({url:'/lab-enhanced/external-eqa/page',method:'get',params:p})}
|
|
export function addExternalEqa(d){return request({url:'/lab-enhanced/external-eqa/add',method:'post',data:d})}
|