|
|
@ -34,7 +34,6 @@ export function selectOrgList(data) { |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// 当前用户创建申请时判断该用户是否有该菜单的操作权限
|
|
|
|
export function selectHaveMessage(data) { |
|
|
|
return request({ |
|
|
@ -94,7 +93,7 @@ export function getGroupList(data) { |
|
|
|
// 查询分页列表 -- 客户列表
|
|
|
|
export function customerListPage(params) { |
|
|
|
return request({ |
|
|
|
url: '/v1/crmcustomer/customerListPage', |
|
|
|
url: '/yxtcrm/apiadmin/v1/crmcustomer/customerListPage', |
|
|
|
method: 'post', |
|
|
|
data: params, |
|
|
|
headers: { 'Content-Type': 'application/json' } |
|
|
@ -124,3 +123,22 @@ export function getCounty(data) { |
|
|
|
params: data |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
// 获取售后服务--基础信息--供应商信息
|
|
|
|
export function choiceSupplierInfo(data) { |
|
|
|
return request({ |
|
|
|
url: '/pms/v1/pmssupplierinfo/choiceSupplierInfo', |
|
|
|
method: 'post', |
|
|
|
params: data |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
// 查询分页列表 -- 商品列表
|
|
|
|
export function chooseproducts(params) { |
|
|
|
return request({ |
|
|
|
url: '/yxtbase/apiadmin/base/basegoodssku/getGoodsListPage', |
|
|
|
method: 'post', |
|
|
|
data: params, |
|
|
|
headers: { 'Content-Type': 'application/json' } |
|
|
|
}) |
|
|
|
} |
|
|
|