挂号退号

This commit is contained in:
2025-11-17 13:28:33 +08:00
parent 93103f7f40
commit d44600b641

View File

@@ -582,6 +582,26 @@
<span>{{ scope.row.refundMethod || '-' }}</span> <span>{{ scope.row.refundMethod || '-' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<!-- 操作列只在全部和正常挂号标签页显示退号记录标签页不显示 -->
<el-table-column
v-if="queryType !== 'returned'"
label="操作"
align="center"
width="120"
fixed="right"
>
<template #default="scope">
<el-button
link
type="primary"
:disabled="scope.row.statusEnum === 6 || scope.row.statusEnum !== 1"
:title="getReturnTooltip(scope.row)"
@click="handleReturn(scope.row)"
>
退号
</el-button>
</template>
</el-table-column>
</el-table> </el-table>
<pagination <pagination
v-show="total > 0" v-show="total > 0"