Compare commits
No commits in common. "9c86cfe04531ce769f0af8684dfca0e45baea3f7" and "e0f790647f8c3109979b1e092bed4d4b30ae8927" have entirely different histories.
9c86cfe045
...
e0f790647f
|
@ -244,15 +244,9 @@ export default {
|
||||||
break;
|
break;
|
||||||
case 6:
|
case 6:
|
||||||
this.$router.push("/greenCarbon");
|
this.$router.push("/greenCarbon");
|
||||||
<<<<<<< HEAD
|
|
||||||
break;
|
|
||||||
case 702:
|
|
||||||
this.$router.push("/bimRoaming");
|
|
||||||
=======
|
|
||||||
break;
|
break;
|
||||||
case 701:
|
case 701:
|
||||||
this.$router.push("/bimManage");
|
this.$router.push("/bimManage");
|
||||||
>>>>>>> origin/dev_xd
|
|
||||||
break;
|
break;
|
||||||
case 102:
|
case 102:
|
||||||
this.$router.push("/labor");
|
this.$router.push("/labor");
|
||||||
|
|
|
@ -60,13 +60,6 @@ const routes = [
|
||||||
component: () =>
|
component: () =>
|
||||||
import(/* webpackChunkName: "bimManage" */ "../views/bimManage.vue"),
|
import(/* webpackChunkName: "bimManage" */ "../views/bimManage.vue"),
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: "/bimRoaming",
|
|
||||||
name: "bimRoaming",
|
|
||||||
meta: { nav: 702 },
|
|
||||||
component: () =>
|
|
||||||
import(/* webpackChunkName: "bimRoaming" */ "../views/bimRoaming.vue"),
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
path: "/videoMonitor",
|
path: "/videoMonitor",
|
||||||
name: "videoMonitor",
|
name: "videoMonitor",
|
||||||
|
|
|
@ -353,7 +353,6 @@ export default {
|
||||||
devicTypes: [1],
|
devicTypes: [1],
|
||||||
viewPoint: null,
|
viewPoint: null,
|
||||||
project: null,
|
project: null,
|
||||||
selProject:null,
|
|
||||||
addLabels: [],
|
addLabels: [],
|
||||||
devices: [],
|
devices: [],
|
||||||
showDevices: [],
|
showDevices: [],
|
||||||
|
|
|
@ -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>
|
|
Loading…
Reference in New Issue