From 0bb1834b9755eaf7c67d25cd9012be2ca14a7efe Mon Sep 17 00:00:00 2001 From: 南骏 池 <chiffly@163.com> Date: 星期五, 11 四月 2025 09:13:16 +0800 Subject: [PATCH] 1.委外退料优化 2.核对送检 --- H5/Js/LLJ/List.js | 16 ++++++++++++++-- 1 files changed, 14 insertions(+), 2 deletions(-) diff --git a/H5/Js/LLJ/List.js b/H5/Js/LLJ/List.js index 661f5af..d961e1e 100644 --- a/H5/Js/LLJ/List.js +++ b/H5/Js/LLJ/List.js @@ -18,7 +18,9 @@ totalCount: 0, checked: true, - id:'' + id: '', + searchKeyword: '', // 鎼滅储鍏抽敭璇� + originalData: [], // 淇濆瓨鍘熷鏁版嵁 } }, mounted() { @@ -30,6 +32,15 @@ this.onLoad(); }, methods: { + + // 鏂板鎼滅储澶勭悊鏂规硶 + handleSearch() { + this.pageIndex = 0; + this.data = []; + this.finished = false; + this.isSearching = true; + this.onLoad(); + }, onLoad() { @@ -50,7 +61,8 @@ pageIndex: that.pageIndex, limit: that.limit, createUser: that.userInfo.loginAccount, - result: result + result: result, + keyword: that.searchKeyword.trim(), // 鏂板鎼滅储鍙傛暟 }, false) .then(function (res) { var json = res; -- Gitblit v1.9.3