Browse Source

修改远程搜索

zs 6 months ago
parent
commit
df7a771090
2 changed files with 2 additions and 37 deletions
  1. 1 21
      src/views/four/index.vue
  2. 1 16
      src/views/search/index.vue

+ 1 - 21
src/views/four/index.vue

@@ -7,9 +7,7 @@
           <a-tab-pane :key="item.key" :tab="item.tab" v-for="item in menuList"> </a-tab-pane>
         </a-tabs>
         <div class="input_1">
-          <el-select size="large" clearable v-model="searchValue" allow-create filterable remote reserve-keyword placeholder="请输入想要搜索的内容" @clear="onSearch" :remote-method="remoteMethod" :loading="searchLoading">
-            <el-option v-for="item in tagsList" :key="item.id" :label="item.title" :value="item.title" />
-          </el-select>
+          <el-input size="large" v-model="searchValue" clearable placeholder="请输入想要搜索的内容" />
           <el-button size="large" @click="onSearch" type="primary">搜索</el-button>
         </div>
         <div class="hot">
@@ -34,11 +32,9 @@ import { TagsStore } from '@/store/api/system/tags'
 const store = TagsStore()
 // 加载中
 const loading = ref(false)
-const searchLoading = ref(false)
 const activeKey = ref('0')
 const searchValue = ref('')
 const list = ref([])
-const tagsList = ref([])
 const menuList = ref([
   { key: '0', tab: '全部' },
   { key: '3', tab: '找项目' },
@@ -72,22 +68,6 @@ const toSelect = (item) => {
   searchValue.value = item.title
   router.push({ path: '/search', query: { name: item.title, type: activeKey.value } })
 }
-const remoteMethod = (query) => {
-  if (query) {
-    searchLoading.value = true
-    setTimeout(async () => {
-      searchLoading.value = false
-      const info = {
-        is_use: '0',
-        title: query
-      }
-      const res = await store.query(info)
-      if (res.errcode == '0') tagsList.value = res.data
-    }, 200)
-  } else {
-    tagsList.value = []
-  }
-}
 const scrollTop = ref(0)
 
 onActivated(() => {

+ 1 - 16
src/views/search/index.vue

@@ -13,9 +13,7 @@
           <a-tab-pane key="6" tab="成果"> </a-tab-pane>
         </a-tabs>
         <div class="input_1">
-          <el-select size="large" clearable v-model="searchValue" allow-create filterable remote reserve-keyword placeholder="请输入想要搜索的内容" :remote-method="remoteMethod" @clear="onSearch" :loading="searchLoading">
-            <el-option v-for="item in tagsList" :key="item.id" :label="item.title" :value="item.title" />
-          </el-select>
+          <el-input size="large" v-model="searchValue" clearable placeholder="请输入想要搜索的内容" />
           <el-button size="large" @click="onSearch" type="primary">搜索</el-button>
         </div>
         <div class="hot">
@@ -96,19 +94,6 @@ const onSearch = () => {
   else if (activeKey.value == '5') supplyRef.value.search()
   else achievementRef.value.search()
 }
-const remoteMethod = (query) => {
-  if (query) {
-    searchLoading.value = true
-    setTimeout(async () => {
-      searchLoading.value = false
-      const info = { is_use: '0', title: query }
-      const res = await store.query(info)
-      if (res.errcode == '0') tagsList.value = res.data
-    }, 200)
-  } else {
-    tagsList.value = []
-  }
-}
 provide('searchValue', searchValue)
 </script>
 <style scoped lang="scss">