|
|
|
@ -92,13 +92,13 @@ |
|
|
|
align="center" |
|
|
|
header-align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-tag v-if="scope.row.confirmStatus === '已确认'" type="success" size="small"> |
|
|
|
已完成 |
|
|
|
<el-tag v-if="scope.row.confirmStatus === '已确认'" type="success" size="mini"> |
|
|
|
{{scope.row.confirmStatus}} |
|
|
|
</el-tag> |
|
|
|
<el-tag v-else-if="canConfirmProcess(scope.row)" type="warning" size="small"> |
|
|
|
<el-tag v-else-if="canConfirmProcess(scope.row)" type="warning" size="mini"> |
|
|
|
待确认 |
|
|
|
</el-tag> |
|
|
|
<el-tag v-else type="info" size="small"> |
|
|
|
<el-tag v-else type="info" size="mini"> |
|
|
|
等待中 |
|
|
|
</el-tag> |
|
|
|
</template> |
|
|
|
@ -120,8 +120,7 @@ |
|
|
|
label="操作" |
|
|
|
width="120" |
|
|
|
align="center" |
|
|
|
header-align="center" |
|
|
|
fixed="right"> |
|
|
|
header-align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<a |
|
|
|
type="text" |
|
|
|
@ -1203,4 +1202,18 @@ export default { |
|
|
|
font-size: 12px; |
|
|
|
vertical-align: middle; |
|
|
|
} |
|
|
|
|
|
|
|
/* 关键修复:cell容器要有足够的padding和overflow可见 */ |
|
|
|
.tri-confirm-table >>> .el-table__body-wrapper .cell { |
|
|
|
padding: 2px 12px !important; |
|
|
|
line-height: 14px !important; |
|
|
|
overflow: visible !important; |
|
|
|
height: auto !important; |
|
|
|
} |
|
|
|
|
|
|
|
/* 标签样式 - 确保不被遮挡 */ |
|
|
|
.tri-confirm-table >>> .el-tag { |
|
|
|
vertical-align: middle !important; |
|
|
|
display: inline-block !important; |
|
|
|
} |
|
|
|
</style> |