From 9f1e740e07085a7fc74defe5d63bcc4818aab69e Mon Sep 17 00:00:00 2001 From: yiming <m13691596795@163.com> Date: 星期四, 29 二月 2024 18:49:37 +0800 Subject: [PATCH] zhang --- pages/bookExhibitionList/index.js | 19 ++++++++++++++++--- 1 files changed, 16 insertions(+), 3 deletions(-) diff --git a/pages/bookExhibitionList/index.js b/pages/bookExhibitionList/index.js index c4d4a70..153ccd8 100644 --- a/pages/bookExhibitionList/index.js +++ b/pages/bookExhibitionList/index.js @@ -8,6 +8,8 @@ * 椤甸潰鐨勫垵濮嬫暟鎹� */ data: { + value: '', + keyword: '', nameSort: null, total: null, page: { @@ -17,7 +19,6 @@ keynoteValue: null, filteredItems: [], newValue: null, - value: '', bookExhibitionList: [], sorter: { value: 'default', @@ -138,7 +139,10 @@ wx.showLoading({ title: '鍔犺浇涓�...', }) - + let searchObj = { + 'Name*': this.data.keyword, + '||subtitle*': this.data.keyword + } // console.log(this.data.keynoteValue); let sort = { Name: this.data.nameSort || 'Desc' @@ -149,7 +153,8 @@ queryType: '*', fields: { jsek_link: [], - 'bookClassification*': this.data.keynoteValue || [] + 'bookClassification*': this.data.keynoteValue || [], + ...searchObj }, paging: this.data.page, sort: sort, @@ -304,5 +309,13 @@ wx.navigateTo({ url: '/pages/bookExhibitionDetails/index?id=' + item.id // 鍋囪璺宠浆鍒拌鎯呴〉闈紝骞朵紶閫掍簡id鍙傛暟 }); + }, + // 鎼滅储妗� + onSearchSubmit(e) { + this.setData({ + keyword: e.detail.value + }) + console.log(this.data.keyword, 'keyword'); + this.bookExhibitionGet() } }) \ No newline at end of file -- Gitblit v1.9.1