From a049c54d7d1a8c1d8f7a34c0548df7fce5484a09 Mon Sep 17 00:00:00 2001 From: hwj Date: Mon, 8 Jun 2026 17:36:50 +0800 Subject: [PATCH] =?UTF-8?q?style=EF=BC=9A=E6=A8=A1=E5=85=B7=E7=BB=84-?= =?UTF-8?q?=E6=90=9C=E7=B4=A2=E6=A1=86=E5=85=A5=E5=8F=82=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/erp/mold/index.vue | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/views/erp/mold/index.vue b/src/views/erp/mold/index.vue index 346271a1..01b999d6 100644 --- a/src/views/erp/mold/index.vue +++ b/src/views/erp/mold/index.vue @@ -182,10 +182,8 @@ const counters = reactive({ const queryParams = reactive({ pageNo: 1, pageSize: 10, - code: undefined as string | undefined, - name: undefined as string | undefined, + keyword: undefined as string | undefined, productIds: [] as number[], - productName: undefined as string | undefined, status: undefined as number | undefined, currentDevice: undefined as string | undefined, currentPosition: undefined as string | undefined @@ -208,10 +206,7 @@ const moldMaintainViewRef = ref() const inputKeyword = ref('') watch(inputKeyword, (val) => { - const v = val?.trim() || undefined - queryParams.code = v - queryParams.name = v - queryParams.productName = v + queryParams.keyword = val?.trim() || undefined }) const onKeywordClear = () => {