From 9e007f676d0e55c4bf0cc2a78bc7dc96be188d50 Mon Sep 17 00:00:00 2001 From: zuozhengqing <a13193816592@163.com> Date: 星期四, 14 十二月 2023 19:45:52 +0800 Subject: [PATCH] 隐藏生成计划和服务收费管理模块 --- src/views/other/payment/saleInvoice/index.vue | 35 ++++++++++++++++++++++++----------- 1 files changed, 24 insertions(+), 11 deletions(-) diff --git a/src/views/other/payment/saleInvoice/index.vue b/src/views/other/payment/saleInvoice/index.vue index a65c286..0ed89c1 100644 --- a/src/views/other/payment/saleInvoice/index.vue +++ b/src/views/other/payment/saleInvoice/index.vue @@ -101,7 +101,7 @@ keyword: "", keywordType: "", tableColumn: [ - { label: "鍙戠エ缂栧彿", prop: "invoiceNumber", default: true }, + { label: "鍙戠エ缂栧彿", prop: "number", default: true }, { label: "涓婚", prop: "subject" }, { label: "瀹㈡埛鍚嶇О", prop: "client_name" }, { label: "绁ㄦ嵁绫诲瀷", prop: "invoiceType_name" }, @@ -169,16 +169,29 @@ // 璇锋眰鏁版嵁 async getData() { this.loading = true - await getInvoiceList({ - keyword: this.keyword, - keywordType: this.keywordType, - page: this.pagerOptions.currPage, - pageSize: this.pagerOptions.pageSize - }) + console.log(this.addConfig) + let params = {} + let sourceTyle = this.addConfig.keywordType === "閿�鍞槑缁嗗崟" ? 1 : 2 + if (this.addConfig.id) { + params = { + sourceId: this.addConfig.id, + sourceType: sourceTyle, + page: this.pagerOptions.currPage, + pageSize: this.pagerOptions.pageSize + } + } else { + params = { + keyword: this.keyword, + keywordType: this.keywordType, + page: this.pagerOptions.currPage, + pageSize: this.pagerOptions.pageSize + } + } + await getInvoiceList(params) .then((res) => { - if (res.data.code === 200) { - if (res.data.data.data && res.data.data.data.length > 0) { - const list = res.data.data.data.map((item) => { + if (res.code === 200) { + if (res.data.data && res.data.data.length > 0) { + const list = res.data.data.map((item) => { return { ...item, client_name: item.Client.name, @@ -187,7 +200,7 @@ } }) this.tableList.tableInfomation = list || [] - this.pagerOptions.totalCount = res.data.data.count + this.pagerOptions.totalCount = res.data.count } else { this.tableList.tableInfomation = [] } -- Gitblit v1.8.0