فهرست منبع

已办事项/待办事项-状态显示

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

+ 5 - 2
src/views/activiti/doneManage.vue

@@ -91,11 +91,14 @@
             <template slot-scope="t, r, i">
               <template v-if="r.deleteReason == '审批通过'">
                 <!-- <a-tag color="#87d068">{{ t }}</a-tag> -->
-                <a-tag color="#87d068">通过</a-tag>
+                <!-- <a-tag color="#87d068">通过</a-tag> -->
+                <a style="color: #87d068;">已通过</a>
               </template>
               <template v-else>
                 <!-- <a-tag color="#b7b7a4">{{ t }}</a-tag> -->
-                <a-tag color="#b7b7a4">驳回</a-tag>
+                <a style="color: red;">已驳回</a>
+
+                <!-- <a-tag color="#b7b7a4">驳回</a-tag> -->
               </template>
             </template>
           </a-table-column>

+ 5 - 2
src/views/activiti/todoManage.vue

@@ -99,8 +99,11 @@
               :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 style="color:green" v-if="!Boolean(t)">处理中</a>
+                <!-- <a-tag color="green" v-if="!Boolean(t)">处理中</a-tag> -->
+                <a style="color:orange" v-if="Boolean(t)">已完成</a>
+
+                <!-- <a-tag color="orange" v-if="Boolean(t)">已完成</a-tag> -->
               </template>
             </a-table-column>
             <a-table-column title="创建时间" dataIndex="createTime" width="15%" align="center">