| | |
| | | <!-- 列表 --> |
| | | <ContentWrap> |
| | | <el-table v-loading="loading" :data="appointmentList" :stripe="true" :show-overflow-tooltip="true"> |
| | | <el-table-column label="就诊流水号" align="center" prop="episodeId" min-width="150px"/> |
| | | <el-table-column label="编号" align="center" prop="patId" /> |
| | | <el-table-column label="缴费" align="center" prop="paid"> |
| | | <template #default="scope"> |
| | |
| | | </ContentWrap> |
| | | |
| | | <!-- 表单弹窗:添加/修改 --> |
| | | <AppointmentForm ref="formRef" @success="getList" /> |
| | | <AppointmentForm ref="formRef" @event_appointment_success="getList" /> |
| | | </template> |
| | | |
| | | <script setup lang="ts"> |