Jelajahi Sumber

拉取备注

zhuxinbo 6 tahun lalu
induk
melakukan
a78c6b854d

+ 1 - 0
src/views/template/userorientation/list.vue

@@ -33,6 +33,7 @@
 
           <a-col :md="6" :sm="8">
             <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
+
               <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
               <a-button
                 type="primary"

+ 3 - 13
src/views/template/userorientation/modules/IntrestCategory.vue

@@ -191,23 +191,13 @@ export default {
       this.getData()
       if (this.dataValue.length > 0) {
         this.checkData = this.dataValue
-        this.checkMatched = this.dataValue.filter(item => {
-          if (item.value < 10090) {
-            return item.value
-          }
-        })
-        this.checkMatched = this.checkMatched.map(item => {
+        this.checkMatched = this.dataValue.map(item => {
           return item.value
         })
-        this.checkMatchedCity = this.dataValue.filter(item => {
-          if (item.value > 10090) {
-            return item.value
-          }
-        })
-        this.checkMatchedCity = this.checkMatchedCity.map(item => {
+        this.checkMatchedCity = this.dataValue.map(item => {
           return item.value
         })
-        console.log(this.checkMatchedCity)
+        
         this.$emit('update:checkData', this.checkData)
       }
     })