From bfdd1a936731cf9b5f0d2c78d363cbb0ec93d941 Mon Sep 17 00:00:00 2001 From: 闫增涛 <1829501689@qq.com> Date: 星期三, 04 九月 2024 09:43:52 +0800 Subject: [PATCH] 树结构排序优化 --- packageBookService/pages/bookServices/list/index.js | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/packageBookService/pages/bookServices/list/index.js b/packageBookService/pages/bookServices/list/index.js index 63cdf59..f5a8654 100644 --- a/packageBookService/pages/bookServices/list/index.js +++ b/packageBookService/pages/bookServices/list/index.js @@ -272,6 +272,7 @@ "secondList.options": options, }); const second = [this.data.secondCode]; + console.log(second); this.setData({ "secondList.value": second, }); @@ -410,6 +411,7 @@ "||author*": this.data.searchValue, "||isbn*": this.data.searchValue, "||seriesName*": this.data.searchValue, + "||projectLeader*": this.data.searchValue }; } const query = { @@ -419,6 +421,9 @@ field: "state", }, ], sort, + coverSize: { + width: 180 + }, paging: { start: 0, size: this.data.pageCount.page * 8, -- Gitblit v1.9.1