From 5cac91d1c46fcffcece34e3b59549c244d4c1119 Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Wed, 23 Oct 2024 10:21:02 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E5=AE=A2=E6=88=B7=E7=AE=A1?= =?UTF-8?q?=E7=90=86--=E7=82=B9=E5=87=BB=E6=9F=A5=E7=9C=8B=E5=AF=B9?= =?UTF-8?q?=E6=8E=A5=E4=BA=BA=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- yxt-as-ui/src/api/client/customermanagement.js | 4 ++-- .../src/views/client/customermanagement/relation/person.vue | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/yxt-as-ui/src/api/client/customermanagement.js b/yxt-as-ui/src/api/client/customermanagement.js index c0c6fbffa2..f47b9a4709 100644 --- a/yxt-as-ui/src/api/client/customermanagement.js +++ b/yxt-as-ui/src/api/client/customermanagement.js @@ -119,9 +119,9 @@ export default { }) }, // 对接人列表 - personList: function(params) { + getListByCustomerSid: function(params) { return request({ - url: '/crm/v1/crmmaintenanceenterpriseperson/personList', + url: '/crm/v1/crmdockingpeople/getListByCustomerSid', method: 'get', params: params }) diff --git a/yxt-as-ui/src/views/client/customermanagement/relation/person.vue b/yxt-as-ui/src/views/client/customermanagement/relation/person.vue index 14ba11f8fa..4115e3c7c4 100644 --- a/yxt-as-ui/src/views/client/customermanagement/relation/person.vue +++ b/yxt-as-ui/src/views/client/customermanagement/relation/person.vue @@ -52,7 +52,7 @@ export default { }) this.formobj.sid = row.sid this.isDesignatedEnterprise = row.isDesignatedEnterprise - req.personList({ sid: row.sid }).then((res) => { + req.getListByCustomerSid({ sid: row.sid }).then((res) => { if (res.success) { this.formobj.list = res.data }