Commit 2610d357 authored by 沈翠玲's avatar 沈翠玲

采集管理

parent 2647b21f
......@@ -48,6 +48,6 @@ export const getlegalPage = (params) => {
return request.get('/customerReport/legalPage', params);
};
// 审核风控
export const savecustomerReport = (data) => {
return request.post('/customerReport/save', data);
export const savecustomerReport = (flowType, data) => {
return request.post('/customerReport/save?flowType='+flowType, data);
};
\ No newline at end of file
......@@ -212,7 +212,7 @@ const submit = (type) => {
} else {
param['legalAffairStatus'] = type
}
savecustomerReport(param).then(res => {
savecustomerReport(roleType.value === 'risk' ? 'risk_control' : 'legalAffair', param).then(res => {
if(res.success) {
cancel()
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment