diff --git a/src/views/evaluation/index.vue b/src/views/evaluation/index.vue
index ae15e937870af66888d71df353b0a4d98525cc0b..73ba2da2f6a5dcdfc0d113cde1ac49abe5d5b1ee 100644
--- a/src/views/evaluation/index.vue
+++ b/src/views/evaluation/index.vue
@@ -39,7 +39,7 @@
         <a-tag :color="'#f50'" v-if="record.evaluationType==3">{{ evaluationTypeC }}</a-tag>
       </template>
       <template slot="supportState" slot-scope="record">
-        {{ record.supportState == 1 ? "是" : "否" }}
+        {{ record.supportState!=null?(record.supportState == 1 ? "是" : "否"):"" }}
       </template>
     </a-table>
     <a-pagination v-if="pagination.total > 0" :total="pagination.total" show-size-changer show-quick-jumper v-model="pagination.pageIndex" :page-size="pagination.pageSize" :page-size-options="pagination.pageSizeOptions" @showSizeChange="showSizeChange" @change="change" :showTotal="() => `共 ${pagination.total} 条`" />