| | |
| | | // 排队 VO |
| | | export interface QueueVO { |
| | | id: number // id |
| | | episodeId: string // 就诊流水号 |
| | | patId: string // 患者编号 |
| | | patName: string // 患者姓名 |
| | | patGender: number // 患者性别 |
| | |
| | | <!-- 列表 --> |
| | | <ContentWrap> |
| | | <el-table v-loading="loading" :data="appointmentList" :stripe="true" :show-overflow-tooltip="true"> |
| | | <el-table-column label="就诊流水号" align="center" prop="episodeId" /> |
| | | <el-table-column label="编号" align="center" prop="patId" /> |
| | | <el-table-column label="缴费" align="center" prop="paid"> |
| | | <template #default="scope"> |
| | |
| | | <ContentWrap> |
| | | <el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true"> |
| | | <!-- <el-table-column label="id" align="center" prop="id" />--> |
| | | <el-table-column label="就诊流水号" align="center" prop="episodeId"/> |
| | | <el-table-column label="患者编号" align="center" prop="patId" /> |
| | | <el-table-column label="患者姓名" align="center" min-width="120px"> |
| | | <template #default="scope"> |