增加接口
This commit is contained in:
@ -55,6 +55,19 @@ export const customerserviceAPI = {
|
||||
//获取咨询项目
|
||||
list(params) {
|
||||
let method = "get";
|
||||
if(params.projectName==null){
|
||||
return request('/api/biz-service-ebtp-tender/v1/participateProject/list', { method: method })
|
||||
}else{
|
||||
return request('/api/biz-service-ebtp-tender/v1/participateProject/list?projectName='+params.projectName, { method: method })
|
||||
}
|
||||
},
|
||||
//获取历史记录
|
||||
getMessageList(params){
|
||||
return request('/api/api/biz-customer-service/outer/v1.0/conversationRecord/findRecordPageForUser',{
|
||||
method:'POST',
|
||||
data:{
|
||||
...params,
|
||||
}
|
||||
});
|
||||
},
|
||||
}
|
Reference in New Issue
Block a user