Compare commits

..

No commits in common. "9c86cfe04531ce769f0af8684dfca0e45baea3f7" and "e0f790647f8c3109979b1e092bed4d4b30ae8927" have entirely different histories.

4 changed files with 0 additions and 56 deletions

View File

@ -244,15 +244,9 @@ export default {
break;
case 6:
this.$router.push("/greenCarbon");
<<<<<<< HEAD
break;
case 702:
this.$router.push("/bimRoaming");
=======
break;
case 701:
this.$router.push("/bimManage");
>>>>>>> origin/dev_xd
break;
case 102:
this.$router.push("/labor");

View File

@ -60,13 +60,6 @@ const routes = [
component: () =>
import(/* webpackChunkName: "bimManage" */ "../views/bimManage.vue"),
},
{
path: "/bimRoaming",
name: "bimRoaming",
meta: { nav: 702 },
component: () =>
import(/* webpackChunkName: "bimRoaming" */ "../views/bimRoaming.vue"),
},
{
path: "/videoMonitor",
name: "videoMonitor",

View File

@ -353,7 +353,6 @@ export default {
devicTypes: [1],
viewPoint: null,
project: null,
selProject:null,
addLabels: [],
devices: [],
showDevices: [],

View File

@ -1,42 +0,0 @@
<template>
<div class="bim-roaming main-page">
</div>
</template>
<script>
export default {
name: 'BIMRoaming',
data(){
return {
dpi: "",
selProject:null,
}
},
mounted(){
this.$store.dispatch("ChangeNav", 702);
this.dpi = this.$dpi();
window.addEventListener("resize", () => {
if (this.dpi != this.$dpi()) {
this.dpi = this.$dpi();
}
});
this.$bus.$on(
"projectChange",
debounce((prj) => {
this.selProject = prj;
this.elId++;
})
);
this.selProject = this.$store.getters.selProject;
},
methods:{
}
}
</script>
<style lang="less">
.bim-roaming{
}
</style>