| | |
| | | <el-table-column label="调整类型" align="center" prop="scheduleType" min-width="100"/> |
| | | <el-table-column label=" 调整策略" align="center" prop="scheduleStrategy" min-width="100"/> |
| | | <el-table-column label="调度时间" align="center" prop="scheduleTime" min-width="160" /> |
| | | <el-table-column label="运行状态" align="center" prop="runStatus"> |
| | | <template #default="scope"> |
| | | <el-tag v-if="scope.row.runStatus + '' === '100'" size="small" type="success">{{scope.row.runStatus}}</el-tag> |
| | | <el-tag v-else size="small" type="danger">{{scope.row.runStatus}}</el-tag> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="备注" header-align="center" align="left" prop="remark" min-width="160" /> |
| | | <el-table-column label="状态" align="center" prop="status" min-width="100"> |
| | | <el-table-column label="是否启用" align="center" prop="status" min-width="100"> |
| | | <template #default="scope"> |
| | | <dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status" /> |
| | | </template> |