|
@@ -142,22 +142,22 @@
|
|
|
<template slot-scope="t, r">
|
|
|
<!--未提交-->
|
|
|
<template v-if="r.result == 0">
|
|
|
- <a-tag color="#f4a261">未提交</a-tag>
|
|
|
+ <a style="color:#f4a261" >未提交</a>
|
|
|
</template>
|
|
|
|
|
|
<!-- 处理中 -->
|
|
|
<template v-if="r.result == 1">
|
|
|
- <a-tag color="#108ee9">处理中</a-tag>
|
|
|
+ <a style="color:#108ee9" >处理中</a>
|
|
|
</template>
|
|
|
|
|
|
<!-- 已通过 -->
|
|
|
<template v-if="r.result == 2">
|
|
|
- <a-tag color="#87d068">通过</a-tag>
|
|
|
+ <a style="color:#87d068" >通过</a>
|
|
|
</template>
|
|
|
|
|
|
<!-- 已驳回 -->
|
|
|
<template v-if="r.result == 3">
|
|
|
- <a-tag color="gray">驳回</a-tag>
|
|
|
+ <a style="color:gray" >驳回</a>
|
|
|
</template>
|
|
|
</template>
|
|
|
</a-table-column>
|