|
@@ -46,18 +46,18 @@
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts" setup name="RightSection">
|
|
|
-import { getImageUrl1 } from './data';
|
|
|
+import { getImageUrl } from './data';
|
|
|
|
|
|
let riskData = reactive([
|
|
|
- { name: '学校', value: '1', icon: getImageUrl1('school2') },
|
|
|
- { name: '医疗卫生机构', value: '1', icon: getImageUrl1('hospital2') },
|
|
|
- { name: '提供住宿的社会服务机构', value: '1', icon: getImageUrl1('socialInstitution2') },
|
|
|
- { name: '公共文化场所', value: '1', icon: getImageUrl1('publicPlace2') },
|
|
|
- { name: '旅游景区', value: '1', icon: getImageUrl1('scenicSpot2') },
|
|
|
- { name: '星级饭店', value: '1', icon: getImageUrl1('restaurant2') },
|
|
|
- { name: '体育场馆', value: '1', icon: getImageUrl1('gymnasium2') },
|
|
|
- { name: '宗教活动场所', value: '1', icon: getImageUrl1('religiousPlace2') },
|
|
|
- { name: '大型超市', value: '1', icon: getImageUrl1('supermarket2') }
|
|
|
+ { name: '学校', value: '1', icon: getImageUrl('school2') },
|
|
|
+ { name: '医疗卫生机构', value: '1', icon: getImageUrl('hospital2') },
|
|
|
+ { name: '提供住宿的社会服务机构', value: '1', icon: getImageUrl('socialInstitution2') },
|
|
|
+ { name: '公共文化场所', value: '1', icon: getImageUrl('publicPlace2') },
|
|
|
+ { name: '旅游景区', value: '1', icon: getImageUrl('scenicSpot2') },
|
|
|
+ { name: '星级饭店', value: '1', icon: getImageUrl('restaurant2') },
|
|
|
+ { name: '体育场馆', value: '1', icon: getImageUrl('gymnasium2') },
|
|
|
+ { name: '宗教活动场所', value: '1', icon: getImageUrl('religiousPlace2') },
|
|
|
+ { name: '大型超市', value: '1', icon: getImageUrl('supermarket2') }
|
|
|
]);
|
|
|
let option1 = reactive({
|
|
|
tooltip: {
|