zpf 11 mesi fa
parent
commit
33ea27a373

+ 33 - 0
src/components/Query/clickQuery/MultiLevelQuery.vue

@@ -0,0 +1,33 @@
+<template>
+
+</template>
+
+<script>
+//这里可以导入其他文件(比如:组件,工具js,第三方插件js,json文件,图片文件等等)
+
+export default {
+  components: {},
+  data() {
+    return {};
+  },
+  //监听属性 类似于data概念
+  computed: {},
+  //监控data中的数据变化
+  watch: {},
+  //方法集合
+  methods: {},
+  beforeCreate() { }, //生命周期 - 创建之前
+  created() { }, //生命周期 - 创建完成(可以访问当前this实例)
+  beforeMount() { }, //生命周期 - 挂载之前
+  mounted() { }, //生命周期 - 挂在完成
+  beforeUpdate() { }, //生命周期 - 更新之前
+  updated() { }, //生命周期 - 更新之后
+  beforeDestroy() { }, //生命周期 - 销毁之前
+  destroy() { },//生命周期 - 销毁完成
+  activated() { }, //若组件实例是 <KeepAlive> 缓存树的一部分,当组件被插入到 DOM 中时调用。
+  deactivated() { } //若组件实例是 <KeepAlive> 缓存树的一部分,当组件从 DOM 中被移除时调用。
+};
+</script>
+<style  scoped>
+
+</style>

+ 12 - 2
src/components/Query/clickQuery/clickQuery.vue

@@ -43,7 +43,8 @@
       </el-collapse>
     </div>
 
-    <CockpitVector class="cockpit_vector"></CockpitVector>
+    <!-- <CockpitVector class="cockpit_vector"></CockpitVector> -->
+
   </div>
 </template>
 
@@ -102,7 +103,12 @@ export default {
         {
           index: 4,
           lable: "矢量",
-          iconName: "el-icon-picture-outline-round",
+          iconName: "el-icon-picture",
+          isSelect: false,
+        }, {
+          index: 5,
+          lable: "联级查询",
+          iconName: "el-icon-c-scale-to-original",
           isSelect: false,
         },
         {
@@ -698,6 +704,10 @@ export default {
         case 4: {//驾驶舱矢量数据点选查询
           pick_cockpit_vector.init_handler();
 
+          break;
+        } case 5: {//联级查询
+          pick_cockpit_vector.init_handler();
+
           break;
         }
         default: