Browse Source

任务/悬赏发布

walter 9 months ago
parent
commit
250d80a4c4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/point/views/common/applicationIntegrationPopup.vue

+ 1 - 1
src/point/views/common/applicationIntegrationPopup.vue

@@ -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>