From 03ff743705dd64f67e6e4aabd03ec5591b922ff9 Mon Sep 17 00:00:00 2001 From: 南骏 池 <chiffly@163.com> Date: 星期一, 09 六月 2025 12:28:50 +0800 Subject: [PATCH] 1.生产补料/超领优化 2.委外补料/超领优化 3.巡检检验新增工单查询选择 4.巡检优化新增时间段字段 --- 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