瀏覽代碼

搜索插件

luxf 3 天之前
父節點
當前提交
c10640a0f4
共有 1 個文件被更改,包括 6 次插入2 次删除
  1. 6 2
      components/common/u-search/index.vue

+ 6 - 2
components/common/u-search/index.vue

@@ -46,8 +46,12 @@
 		},
 		mounted() {},
 		methods: {
-			query(e) {
-				this.searchKeyword = e.detail
+			query(val) {
+				this.searchKeyword = val
+				this.$emit('input', this.searchKeyword)
+				this.$emit('change', {
+					detail: this.searchKeyword
+				})
 			},
 			onClickSearch() {
 				this.$emit('search')