增加接口
This commit is contained in:
@ -55,6 +55,19 @@ export const customerserviceAPI = {
|
|||||||
//获取咨询项目
|
//获取咨询项目
|
||||||
list(params) {
|
list(params) {
|
||||||
let method = "get";
|
let method = "get";
|
||||||
return request('/api/biz-service-ebtp-tender/v1/participateProject/list', { method: method })
|
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