From 128a3f65cb4aedf88bb6de91fd24dceb82159b0d Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期一, 08 四月 2024 15:22:10 +0800 Subject: [PATCH] 删除纤度检验表的接口联调 --- src/views/productManage/silkRegisterForm/index.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/productManage/silkRegisterForm/index.vue b/src/views/productManage/silkRegisterForm/index.vue index a82b23d..d7c6e67 100644 --- a/src/views/productManage/silkRegisterForm/index.vue +++ b/src/views/productManage/silkRegisterForm/index.vue @@ -61,7 +61,7 @@ tableList: {}, loading: false, searchOptions: [], - search_map: {}, + keyword: '', tableColumn: [ { label: "缂栧彿", prop: "number", min: 120, default: true }, // 涓婚 { label: "钀戒笣鏃堕棿", prop: "finishDate", min: 190, }, // 瀹㈡埛鍚嶇О @@ -86,7 +86,7 @@ }, created() { this.setTable() - this.getData(this.search_map) + this.getData(this.keyword) }, computed: { }, @@ -123,7 +123,7 @@ async getData() { this.loading = true await getRegisterList({ - search_map: this.search_map, + keyword: this.keyword, page: this.pagerOptions.currPage, pageSize: this.pagerOptions.pageSize }) @@ -160,7 +160,7 @@ }, // 鎼滅储 onFilterSearch(searchText) { - this.search_map.client_name = searchText ?? "" + this.keyword = searchText ?? "" this.pagerOptions.currPage = 1 this.getData() }, -- Gitblit v1.8.0