main^2
parent
9e85f12863
commit
8c42512b59
|
@ -175,6 +175,7 @@ function setLayout() {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
background: url('@/assets/images/top_banner_deep.png') no-repeat #000000;
|
background: url('@/assets/images/top_banner_deep.png') no-repeat #000000;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
|
||||||
.left {
|
.left {
|
||||||
width: 33%;
|
width: 33%;
|
||||||
|
|
|
@ -11,12 +11,19 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="right-div">
|
<div class="right-div">
|
||||||
<img :src="getAssetsFile(infoList.imgUrl)" alt="" width="400">
|
<!-- <img :src="getAssetsFile(infoList.imgUrl)" alt="" width="400"> -->
|
||||||
|
<img :src="licang" alt="" width="400" v-if="infoList.imgUrl == 'licang'">
|
||||||
|
<img :src="guolvcao" alt="" width="400" v-else-if="infoList.imgUrl == 'guolvcao'">
|
||||||
|
<img :src="device" alt="" width="400" v-else>
|
||||||
<span>设备图片</span>
|
<span>设备图片</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
|
import licang from '@/assets/images/licang.jpg';
|
||||||
|
import guolvcao from '@/assets/images/guolvcao.jpg';
|
||||||
|
import device from '@/assets/images/device.jpg'
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
infoList: {
|
infoList: {
|
||||||
default: {},
|
default: {},
|
||||||
|
|
|
@ -67,7 +67,7 @@ const deviceData = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '距离过保天数',
|
name: '距离过保天数',
|
||||||
value: '-34天'
|
value: '314天'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '设备二维码',
|
name: '设备二维码',
|
||||||
|
@ -75,7 +75,7 @@ const deviceData = {
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
'guolvcao': {
|
'guolvcao_1': {
|
||||||
name: '过滤槽',
|
name: '过滤槽',
|
||||||
imgUrl: 'guolvcao',
|
imgUrl: 'guolvcao',
|
||||||
detail: [
|
detail: [
|
||||||
|
@ -125,7 +125,7 @@ const deviceData = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '距离过保天数',
|
name: '距离过保天数',
|
||||||
value: '-34天'
|
value: '34天'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '设备二维码',
|
name: '设备二维码',
|
||||||
|
@ -199,7 +199,7 @@ const defaultData = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '距离过保天数',
|
name: '距离过保天数',
|
||||||
value: '-34天'
|
value: '84天'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '设备二维码',
|
name: '设备二维码',
|
||||||
|
|
|
@ -130,8 +130,6 @@ watch(() => bimStore().activateMenu, value => {
|
||||||
// 更换场景颜色
|
// 更换场景颜色
|
||||||
scene.background = new THREE.Color(value.background);
|
scene.background = new THREE.Color(value.background);
|
||||||
toHomeView();
|
toHomeView();
|
||||||
// 移除消防图标
|
|
||||||
removexf();
|
|
||||||
}, { deep: true });
|
}, { deep: true });
|
||||||
|
|
||||||
const init = () => {
|
const init = () => {
|
||||||
|
@ -430,6 +428,8 @@ const toHomeView = () => {
|
||||||
cleanColor();
|
cleanColor();
|
||||||
// 隐藏图例
|
// 隐藏图例
|
||||||
isShowWall.value = false;
|
isShowWall.value = false;
|
||||||
|
// 移除消防图标
|
||||||
|
removexf();
|
||||||
}
|
}
|
||||||
// 拉近距离
|
// 拉近距离
|
||||||
const nearCamera = (floor) => {
|
const nearCamera = (floor) => {
|
||||||
|
|
Loading…
Reference in New Issue