|
@@ -73,7 +73,7 @@
|
|
|
</a-table-column>
|
|
|
|
|
|
<!-- 优先级 -->
|
|
|
- <a-table-column
|
|
|
+ <!-- <a-table-column
|
|
|
title="优先级"
|
|
|
dataIndex="priority"
|
|
|
width="10%"
|
|
@@ -87,7 +87,7 @@
|
|
|
<span v-else-if="t == 2" style="color: red;"> 紧急 </span>
|
|
|
<span v-else style="color: #999;"> 无 </span>
|
|
|
</template>
|
|
|
- </a-table-column>
|
|
|
+ </a-table-column> -->
|
|
|
|
|
|
<!-- 状态 -->
|
|
|
<a-table-column
|
|
@@ -99,8 +99,8 @@
|
|
|
:sorter="(a, b) => (Boolean(a.isSuspended) ? 0 : 1 - Boolean(b.isSuspended) ? 0 : 1)"
|
|
|
>
|
|
|
<template slot-scope="t">
|
|
|
- <a-tag color="green" v-if="!Boolean(t)">已激活</a-tag>
|
|
|
- <a-tag color="orange" v-if="Boolean(t)">已挂起</a-tag>
|
|
|
+ <a-tag color="green" v-if="!Boolean(t)">审批中</a-tag>
|
|
|
+ <a-tag color="orange" v-if="Boolean(t)">已完成</a-tag>
|
|
|
</template>
|
|
|
</a-table-column>
|
|
|
<a-table-column title="创建时间" dataIndex="createTime" width="20%" align="center">
|