From 3bd59622961f569ac181a0f17aeffd44858efa4f Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期日, 28 四月 2024 17:19:13 +0800 Subject: [PATCH] 价税合计和数量,采购单价 3者之间计算管理的逻辑处理 --- src/views/purchaseManage/purchase/components/SelectSupplierDialog.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/purchaseManage/purchase/components/SelectSupplierDialog.vue b/src/views/purchaseManage/purchase/components/SelectSupplierDialog.vue index 0f57884..3966a1a 100644 --- a/src/views/purchaseManage/purchase/components/SelectSupplierDialog.vue +++ b/src/views/purchaseManage/purchase/components/SelectSupplierDialog.vue @@ -123,11 +123,11 @@ this.editConfig.editVisible = false }, // 璇锋眰鏁版嵁 - async getData(val, content) { + async getData(val) { this.loading = true await getSupplierList({ - [val]: content, + keyword: val, status:1, page: this.pagerOptions.currPage, pageSize: this.pagerOptions.pageSize @@ -162,8 +162,8 @@ this.$emit("selClient", row) }, // 鎼滅储 - searchClick(val, content) { - this.getData(val.value, content) + searchClick(val) { + this.getData(val) }, resetClick() { this.getData() -- Gitblit v1.8.0