挂号退号
This commit is contained in:
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user