维护换卡处理的查询bug

This commit is contained in:
2025-11-12 09:59:03 +08:00
parent 73efeecfc1
commit 0977eb8145

View File

@@ -0,0 +1,26 @@
<template>
<div class="patient-record-query">
<h1>患者记录查询</h1>
<!-- 患者记录查询组件内容 -->
</div>
</template>
<script>
export default {
name: 'PatientRecordQuery',
data() {
return {
// 组件数据
}
},
methods: {
// 组件方法
}
}
</script>
<style scoped>
.patient-record-query {
padding: 20px;
}
</style>