|
|
@@ -19,11 +19,6 @@
|
|
|
@mouseleave="hideDeleteIcon(item)"
|
|
|
>
|
|
|
<div class="pic-box" @click="handleClick(item)">
|
|
|
- <!-- <img
|
|
|
- :src="globSetting.imgUrl! +(item.layout as any).bgInfo.img"
|
|
|
- alt="图片"
|
|
|
- class="content-pic"
|
|
|
- /> -->
|
|
|
<MapContainerSmall
|
|
|
ref="mapContainerRef"
|
|
|
:bg-image-url="(item.layout as any).bgInfo.img"
|
|
|
@@ -49,12 +44,10 @@
|
|
|
<script lang="ts" setup>
|
|
|
import { ref, onMounted } from 'vue';
|
|
|
import { useRouter } from 'vue-router';
|
|
|
- import { useGlobSetting } from '@/hooks/setting';
|
|
|
import { Plus } from '@element-plus/icons-vue';
|
|
|
import { getCompanyLayoutList, delCompanyLayout } from '@/api/scene/scene';
|
|
|
import MapContainerSmall from './mapContainer/MapContainerSmall.vue';
|
|
|
|
|
|
- const globSetting = useGlobSetting();
|
|
|
interface companyLayoutType {
|
|
|
createdAt: string;
|
|
|
id: number;
|
|
|
@@ -147,7 +140,6 @@
|
|
|
background: rgba(255, 255, 255, 0.04);
|
|
|
border-radius: 5px;
|
|
|
border: 1px dashed rgba(0, 0, 0, 0.15);
|
|
|
- // text-align: center;
|
|
|
margin-left: 56px;
|
|
|
margin-top: 43px;
|
|
|
}
|