diff --git a/pages/list/list.vue b/pages/list/list.vue index e809981de5084ef3598e6c4fc12ba158afef8ea2..021eae0bd31ad88b3d5cf97a040fc2c9dd14c43f 100644 --- a/pages/list/list.vue +++ b/pages/list/list.vue @@ -28,7 +28,7 @@ }, methods: { /** - * 切换商品列表布局方向 + * 切换商品列表布局方向(未实现) */ select() { this.formData.waterfall = !this.formData.waterfall; @@ -39,17 +39,6 @@ onReachBottom() { this.$refs.newsList.loadMore(); } - }, - watch: { - searchText(value) { - this.search(value); - } - }, - computed: { - listTitle() { - if (this.searchText) return '搜索结果'; - return ''; - } } };