Browse Source

完善客户管理--点击查看对接人列表

zhanglei
yunuo970428 8 months ago
parent
commit
5cac91d1c4
  1. 4
      yxt-as-ui/src/api/client/customermanagement.js
  2. 2
      yxt-as-ui/src/views/client/customermanagement/relation/person.vue

4
yxt-as-ui/src/api/client/customermanagement.js

@ -119,9 +119,9 @@ export default {
}) })
}, },
// 对接人列表 // 对接人列表
personList: function(params) { getListByCustomerSid: function(params) {
return request({ return request({
url: '/crm/v1/crmmaintenanceenterpriseperson/personList', url: '/crm/v1/crmdockingpeople/getListByCustomerSid',
method: 'get', method: 'get',
params: params params: params
}) })

2
yxt-as-ui/src/views/client/customermanagement/relation/person.vue

@ -52,7 +52,7 @@ export default {
}) })
this.formobj.sid = row.sid this.formobj.sid = row.sid
this.isDesignatedEnterprise = row.isDesignatedEnterprise this.isDesignatedEnterprise = row.isDesignatedEnterprise
req.personList({ sid: row.sid }).then((res) => { req.getListByCustomerSid({ sid: row.sid }).then((res) => {
if (res.success) { if (res.success) {
this.formobj.list = res.data this.formobj.list = res.data
} }

Loading…
Cancel
Save