فهرست منبع

待办事项-隐藏优先级字段/修改状态值

jbb 2 سال پیش
والد
کامیت
4770bfbfe0
1فایلهای تغییر یافته به همراه4 افزوده شده و 4 حذف شده
  1. 4 4
      src/views/activiti/todoManage.vue

+ 4 - 4
src/views/activiti/todoManage.vue

@@ -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">