From f86d07ccc55c800eaefc6b1cff0f242d71f6841b Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期五, 22 十二月 2023 15:14:49 +0800 Subject: [PATCH] 调用地方修改 --- src/views/other/commonDialog/SelectCommonDialog.vue | 24 +++++++++++++++--------- 1 files changed, 15 insertions(+), 9 deletions(-) diff --git a/src/views/other/commonDialog/SelectCommonDialog.vue b/src/views/other/commonDialog/SelectCommonDialog.vue index 4e6e01e..aad1584 100644 --- a/src/views/other/commonDialog/SelectCommonDialog.vue +++ b/src/views/other/commonDialog/SelectCommonDialog.vue @@ -72,7 +72,12 @@ tableInfomation: [] } } - } + }, + // 鏍规嵁鎶ヤ环鍗曟煡璇骇鍝� + quotationNumber:{ + type:[String,Number], + default:'' + }, }, components: {}, computed: {}, @@ -352,9 +357,7 @@ // 閿�鍞槑缁嗗崟 async getSalesDetailsList() { await getSalesDetailsList({ - // keyword: this.keyword, - // keywordType: this.keywordType, - clientId:this.editCommonConfig.clientId, + clientId:Number(this.editCommonConfig.clientId), page: this.pagerOptions.currPage, pageSize: this.pagerOptions.pageSize }).then((res) => { @@ -409,12 +412,17 @@ }, // 浜у搧鍚嶇О async getProductList() { - await getProductList({ + let params={ productName: this.keywordType === "浜у搧鍚嶇О" ? this.keyword : "", productNumber: this.keywordType === "浜у搧缂栧彿" ? this.keyword : "", page: this.pagerOptions.currPage, pageSize: this.pagerOptions.pageSize - }).then((res) => { + } + // 鏍规嵁鎶ヤ环鍗曟煡璇骇鍝� + if(this.quotationNumber){ + params.quotationNumber=this.quotationNumber + } + await getProductList(params).then((res) => { console.log(res.data) if (res.code === 200) { if (res.data.data && res.data.data.length > 0) { @@ -434,9 +442,7 @@ }, async getSalesReturnList() { await getSalesReturnList({ - // keyword: this.keyword, - // keywordType: this.keywordType, - clientId:this.editCommonConfig.clientId, + clientId:Number(this.editCommonConfig.clientId), page: this.pagerOptions.currPage, pageSize: this.pagerOptions.pageSize }).then((res) => { -- Gitblit v1.8.0