Lita-Tako 5 months ago
parent
commit
d16ab3d57c
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/views/emergencySupport/analysis.vue

+ 2 - 1
src/views/emergencySupport/analysis.vue

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