修改新增企业 新增联系人组件 是否调用无权限接口

This commit is contained in:
fengachen
2021-09-27 11:54:13 +08:00
parent 0e4361edc5
commit e9a2a9cc7f
7 changed files with 103 additions and 36 deletions
+6 -2
View File
@@ -109,9 +109,12 @@ export const transitRESTful = {
}
// 通过企业名称获取该企业下的联系人
const getContactsByCompany = (params) => getAction('/company/payContactsManagement/queryByCompanyMeeting', params)
const getContactsByCompany = (params) => getAction('/company/payContactsManagement/queryByCompany', params)
// 通过企业名称获取该企业下的联系人无权限接口
const getContactsByCompanyNoLimit = (params) => getAction('/company/payContactsManagement/queryByCompanyMeeting', params)
// 通过联系人id获取联系人信息
const getContactsById = (param) => getAction('/company/payContactsManagement/queryByIdMeeting', param)
// 加密获取key 与 iv
const getKeyIv = (param) => getAction('/sys/getEncryptedString',param)
@@ -176,7 +179,8 @@ export {
queryallRoles,
getContactsById,
getFileInfo,
getKeyIv
getKeyIv,
getContactsByCompanyNoLimit
}