Browse Source

Merge remote-tracking branch 'origin/master'

yangc 7 years ago
parent
commit
e830b6b7f0

+ 1 - 0
pages/mobile/applyPurchase/list/businessOpportunity.vue

@@ -112,6 +112,7 @@
       searchSeek: function () {
       searchSeek: function () {
         this.page = 1
         this.page = 1
         this.isChange = true
         this.isChange = true
+        this.$refs.searchSeekInput.blur()
         this.reloadData()
         this.reloadData()
       }
       }
     }
     }

+ 1 - 0
pages/mobile/applyPurchase/list/index.vue

@@ -107,6 +107,7 @@
       searchSeek: function () {
       searchSeek: function () {
         this.page = 1
         this.page = 1
         this.isChange = true
         this.isChange = true
+        this.$refs.searchSeekInput.blur()
         this.reloadData()
         this.reloadData()
       }
       }
     }
     }

+ 7 - 0
pages/mobile/center/index.vue

@@ -554,6 +554,13 @@
           this.seekPage = 1
           this.seekPage = 1
         }
         }
         this.reloadData()
         this.reloadData()
+        if (this.$refs.searchSeekInput instanceof Array) {
+          for (let i = 0; i < this.$refs.searchSeekInput.length; i++) {
+            this.$refs.searchSeekInput[i].blur()
+          }
+        } else {
+          this.$refs.searchSeekInput.blur()
+        }
       },
       },
       reloadData: function () {
       reloadData: function () {
         let type = this.seekType
         let type = this.seekType