[update] 修改外来标准,定时任务不显示状态

This commit is contained in:
lideqin
2024-06-19 16:49:13 +08:00
parent 21d72188ea
commit db6ef3d3a2
8 changed files with 16 additions and 16 deletions
+2 -2
View File
@@ -95,8 +95,8 @@
<!-- 状态渲染模板 -->
<template slot="customRenderStatus" slot-scope="status">
<a-tag v-if="status==='0'" color="green">已启动</a-tag>
<a-tag v-if="status==='-1'" color="orange">已暂停</a-tag>
<a-tag v-if="status + '' ==='0'" color="green">已启动</a-tag>
<a-tag v-if="status + '' ==='-1'" color="orange">已暂停</a-tag>
</template>
</a-table>
</div>