From 349b09cb9956fed186786dfb1b4c17723d5e8464 Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期一, 16 十月 2023 15:42:31 +0800 Subject: [PATCH] 销售线索,省份 不能切换,城市的下拉无数据。销售明细单收款单,添加成功跳转登录,接口没有加入白名单 --- src/views/service/serviceContract/index.vue | 37 ++++++++++++++++++++++++++++++------- 1 files changed, 30 insertions(+), 7 deletions(-) diff --git a/src/views/service/serviceContract/index.vue b/src/views/service/serviceContract/index.vue index 08cd136..5e1974b 100644 --- a/src/views/service/serviceContract/index.vue +++ b/src/views/service/serviceContract/index.vue @@ -198,13 +198,36 @@ // 璇锋眰鏁版嵁 async getData() { this.loading = true - await getServiceContractList({ - keyword: this.keyword, - keywordType: this.keywordType, - page: this.pagerOptions.currPage, - pageSize: this.pagerOptions.pageSize, - contactId:this.addConfig.client_id - }) + let params = {} + console.log(this.addConfig) + if (this.addConfig.id && this.addConfig.keywordType === "閿�鍞満浼�") { + params = { + saleChanceId: this.addConfig.id, + page: this.pagerOptions.currPage, + pageSize: this.pagerOptions.pageSize + } + } else if (this.addConfig.id && this.addConfig.keywordType === "閿�鍞槑缁嗗崟") { + params = { + salesDetailsId: this.addConfig.id, + page: this.pagerOptions.currPage, + pageSize: this.pagerOptions.pageSize + } + } else if (this.addConfig.id && this.addConfig.keywordType === "鎶ヤ环鍗�") { + params = { + quotationId: this.addConfig.id, + page: this.pagerOptions.currPage, + pageSize: this.pagerOptions.pageSize + } + } else { + params = { + keyword: this.keyword, + keywordType: this.keywordType, + page: this.pagerOptions.currPage, + pageSize: this.pagerOptions.pageSize, + contactId: this.addConfig.client_id + } + } + await getServiceContractList(params) .then((res) => { console.log(res) if (res.code === 200) { -- Gitblit v1.8.0