hubin пре 1 година
родитељ
комит
2b48fa489e
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2 1
      src/views/flow/test/business.vue

+ 2 - 1
src/views/flow/test/business.vue

@@ -27,8 +27,9 @@
 				</template>
 
 				<template #statusSlot="scope">
-					<el-tag v-if="scope.row.status === 1" type="danger">已拒绝</el-tag>
+					<el-tag v-if="scope.row.status === 1" type="warning">审批中</el-tag>
 					<el-tag v-else-if="scope.row.status === 2" type="success">已通过</el-tag>
+					<el-tag v-if="scope.row.status === 3" type="danger">已拒绝</el-tag>
 					<el-tag v-else type="info">待审批</el-tag>
 				</template>