Commit ca2873e6 authored by wangxl's avatar wangxl

222

parent 7327cb74
......@@ -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} 条`" />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment