Files
his/openhis-ui-vue3/src/views/inpatientNurse/medicalOrderProofread/store/patient.js
chenqi 3115e38cc4 Revert "```"
This reverts commit abc0674531.
2025-12-26 22:21:21 +08:00

13 lines
262 B
JavaScript

// 选择患者信息
export const patientInfo = ref()
export function updatePatientInfo(info) {
patientInfo.value = info
}
// 多选患者
export const patientInfoList = ref([])
export function updatePatientInfoList(info) {
patientInfoList.value = info
}