| | |
| | | class="!w-240px" |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item label="是否显示患者条码" prop="displayBarcode"> |
| | | <el-input |
| | | v-model="queryParams.displayBarcode" |
| | | placeholder="请输入是否显示患者条码" |
| | | clearable |
| | | @keyup.enter="handleQuery" |
| | | class="!w-240px" |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item label="是否需要确费" prop="expenseRecognition"> |
| | | <el-input |
| | | v-model="queryParams.expenseRecognition" |
| | | placeholder="请输入是否需要确费" |
| | | clearable |
| | | @keyup.enter="handleQuery" |
| | | class="!w-240px" |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item label="时段预约规定人数" prop="timeslotBookNum"> |
| | | <el-input |
| | | v-model="queryParams.timeslotBookNum" |
| | | placeholder="请输入时段预约规定人数" |
| | | clearable |
| | | @keyup.enter="handleQuery" |
| | | class="!w-240px" |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item label="每时段预留人数" prop="timeslotReservedNum"> |
| | | <el-input |
| | | v-model="queryParams.timeslotReservedNum" |
| | | placeholder="请输入每时段预留人数" |
| | | clearable |
| | | @keyup.enter="handleQuery" |
| | | class="!w-240px" |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item label="亲和的检查类型" prop="affinityCheckTypes"> |
| | | <el-input |
| | | v-model="queryParams.affinityCheckTypes" |
| | | placeholder="请输入亲和的检查类型" |
| | | clearable |
| | | @keyup.enter="handleQuery" |
| | | class="!w-240px" |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item> |
| | | <el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button> |
| | | <el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button> |
| | |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="叫号列" align="center" prop="callingColumn" /> |
| | | <el-table-column label="是否显示患者条码" align="center" prop="displayBarcode" /> |
| | | <el-table-column label="是否需要确费" align="center" prop="expenseRecognition" /> |
| | | <el-table-column label="时段预约规定人数" align="center" prop="timeslotBookNum" /> |
| | | <el-table-column label="每时段预留人数" align="center" prop="timeslotReservedNum" /> |
| | | <el-table-column label="亲和的检查类型" align="center" prop="affinityCheckTypes" /> |
| | | <el-table-column label="操作" align="center" min-width="120px"> |
| | | <template #default="scope"> |
| | | <el-button |
| | |
| | | readyNum: undefined, |
| | | createTime: [], |
| | | needDevReady: undefined, |
| | | callingColumn: undefined |
| | | callingColumn: undefined, |
| | | displayBarcode: undefined, |
| | | expenseRecognition: undefined, |
| | | timeslotBookNum: undefined, |
| | | timeslotReservedNum: undefined, |
| | | affinityCheckTypes: undefined |
| | | }) |
| | | const queryFormRef = ref() // 搜索的表单 |
| | | const exportLoading = ref(false) // 导出的加载中 |