| | |
| | | </el-table-column> |
| | | <el-table-column :label="t('table.action')" align="center" fixed="right" width="200"> |
| | | <template #default="scope"> |
| | | <!-- :disabled="scope.row.status == 3" --> |
| | | <el-button |
| | | v-if="superAdminProcess(scope.row.status, scope.row.type)" |
| | | :disabled="scope.row.status == 3" |
| | | :disabled="scope.row.status == 3" |
| | | link |
| | | type="primary" |
| | | @click="openAuditForm('update', scope.row.id)" |
| | |
| | | |
| | | <!-- 表单弹窗:添加/修改 --> |
| | | <DigitalHumansForm ref="formRef" @success="getList" /> |
| | | <!-- 处理 --> |
| | | <AuditForm ref="auditFormRef" @success="getList" /> |
| | | </template> |
| | | |
| | |
| | | getList() |
| | | }) |
| | | </script> |
| | | |
| | | <style> |
| | | |
| | | .el-scrollbar__view{ |
| | | width: 100%; |
| | | } |
| | | .el-scrollbar__view .el-table__body{ |
| | | width: 100% !important; |
| | | } |
| | | </style> |