|
@@ -118,7 +118,7 @@
|
|
|
<el-table-column prop="msg" label="备注信息"></el-table-column>
|
|
|
<el-table-column prop="status" label="处理状态">
|
|
|
<template slot-scope="scope">
|
|
|
- <span :style="'color:' + (scope.row.status == 0 ? '#f70000' : '#47bf47')">{{ scope.row.status == 0 ? '申请失败' : '申请成功' }}</span>
|
|
|
+ <span :style="'color:' + (scope.row.status === 0 ? '#f70000' : '#47bf47')">{{ scope.row.status === 0 ? '申请失败' : '申请成功' }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|