From 81f54040c2cb65537c6c6e1db8358a39a57dea0d Mon Sep 17 00:00:00 2001
From: mayisheng <admin>
Date: Mon, 15 Aug 2022 16:14:01 +0800
Subject: [PATCH] 1
---
src/components/mobileCortrolSearch/index.vue | 13 ++++++-------
1 files changed, 6 insertions(+), 7 deletions(-)
diff --git a/src/components/mobileCortrolSearch/index.vue b/src/components/mobileCortrolSearch/index.vue
index 294b324..545d6c9 100644
--- a/src/components/mobileCortrolSearch/index.vue
+++ b/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 = "";
},
--
Gitblit v1.9.3