|
@@ -190,7 +190,8 @@
|
190
|
190
|
</a-table>
|
191
|
191
|
<a-table v-show="siteTableShow" :columns="columns2" :data-source="dataSource" bordered :pagination="false">
|
192
|
192
|
<template #bodyCell="{ column, text, record }">
|
193
|
|
- <span v-if="column.dataIndex === 'area'">{{ dictItem(record.area).name }}</span>
|
|
193
|
+<!-- <span v-if="column.dataIndex === 'area'"> {{ dictItem(record.area).name ? dictItem(record.area).name : record.area }}</span>-->
|
|
194
|
+ <span v-if="column.dataIndex === 'area'"> {{ dictItem(record.area) ? dictItem(record.area).name : record.area }}</span>
|
194
|
195
|
</template>
|
195
|
196
|
</a-table>
|
196
|
197
|
</a-card>
|