Browse Source

使用bus2

yx 4 years ago
parent
commit
f66bfdf5d5
3 changed files with 8 additions and 3 deletions
  1. 3 0
      src/bus2.js
  2. 2 2
      src/components/baseEditer.vue
  3. 3 1
      src/components/edit/top_toolbar.vue

+ 3 - 0
src/bus2.js

@@ -0,0 +1,3 @@
+import Vue from 'vue'
+const bus2 = new Vue()
+export default bus2

+ 2 - 2
src/components/baseEditer.vue

@@ -12,6 +12,7 @@ import { SFloorParser } from '@saga-web/big'
 import { FloorView } from './../lib/FloorView'
 import { EditScence } from './mapClass/EditScence'
 import bus from '@/bus'
+import bus2 from '@/bus2'
 import { saveGroup, readGroup, queryTypeGraph, publishGraph } from '@/api/editer.js'
 import { STopologyParser } from './../lib/parsers/STopologyParser'
 import { uuid } from '@/components/mapClass/until'
@@ -66,7 +67,6 @@ export default {
         // 挂在bus
         this.getBus()
         store.dispatch('getElementType', { PageSize: 1000 })
-        window.vm = this
     },
     methods: {
         init() {
@@ -402,7 +402,7 @@ export default {
             console.log('itemMsg', itemMsg)
             this.chiceItemList = itemMsg.itemList
             this.$emit('changeFocusItem', itemMsg)
-            bus.$emit('FocusItemChanged', itemMsg)
+            bus2.$emit('FocusItemChanged', itemMsg)
         },
         // 监听场景元素数据变化
         scenceUpdate(scence) {

+ 3 - 1
src/components/edit/top_toolbar.vue

@@ -112,6 +112,7 @@
 </template>
 <script>
 import bus from "@/bus";
+import bus2 from "@/bus2";
 import { SGraphLayoutType } from "@saga-web/graph/lib";
 import systym from "./codeMapSystem.js";
 import { MessageBox } from "element-ui";
@@ -350,7 +351,8 @@ export default {
         }
     },
     async mounted() {
-        bus.$on("FocusItemChanged", itemMsg => {
+        console.log('dsafadsfasdfas')
+        bus2.$on("FocusItemChanged", itemMsg => {
             console.log("itemMsg", itemMsg);
             this.FocusItemChanged(itemMsg);
         });