Revert "```"

This reverts commit abc0674531.
This commit is contained in:
2025-12-26 22:21:21 +08:00
parent ae6c486114
commit 3115e38cc4
920 changed files with 14452 additions and 107025 deletions

View File

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