소스 검색

待办事项-状态列显示字符

jbb 2 년 전
부모
커밋
051fdf74b2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/views/activiti/todoManage.vue

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

@@ -99,7 +99,7 @@
               :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="green" v-if="!Boolean(t)">处理中</a-tag>
                 <a-tag color="orange" v-if="Boolean(t)">已完成</a-tag>
               </template>
             </a-table-column>