1
mayisheng
2022-08-15 81f54040c2cb65537c6c6e1db8358a39a57dea0d
src/components/mobileCortrolSearch/index.vue
@@ -1,4 +1,7 @@
<template>
  <!-- 中间搜索
mobileCortrolSearch
 -->
  <div class="m-left-mobileCortrolSearch">
    <div class="m-left-SearchMain">
      <el-input
@@ -13,8 +16,7 @@
          class="iconSearch"
          icon="el-icon-search icon"
          @click="search"
        >
        </el-button>
        ></el-button>
      </el-input>
    </div>
  </div>
@@ -27,13 +29,10 @@
  data() {
    return {
      viewer: null,
      DC: null,
      input: "",
    };
  },
  created() {
    this.DC = global.DC;
  },
  created() {},
  mounted() {},
  methods: {
    initialize(viewer) {
@@ -41,7 +40,7 @@
      this.viewer = viewer;
    },
    search() {
      let that = this;
      const that = this;
      this.$store.commit("MSET_BIGPOPUP", { search: true, value: that.input });
      that.input = "";
    },