解决合并冲突

This commit is contained in:
2025-12-10 14:20:24 +08:00
parent e1385cb3e6
commit 18f6a845e6
804 changed files with 61881 additions and 13577 deletions

View File

@@ -0,0 +1,20 @@
/*
* @Author: sjjh
* @Date: 2025-04-09 17:55:05
* @Description:
*/
// import { IInPatient } from '@/model/IInPatient'
import { ref } from 'vue';
// 定义护士等级(没接口前mock)
export const nursingLevel = ref('0');
export function updateNursingLevel(level) {
nursingLevel.value = level;
}
// 选择患者信息
export const patientInfo = ref();
export function updatePatientInfo(info) {
patientInfo.value = info;
}