main^2
wangqiujuan0808 2024-01-11 23:33:51 +08:00
parent 9e85f12863
commit 8c42512b59
4 changed files with 15 additions and 7 deletions

View File

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

View File

@ -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: {},

View File

@ -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: '设备二维码',

View File

@ -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) => {