Commit a18d2e0b authored by 沈翠玲's avatar 沈翠玲

资产分配

parent d93d2ff5
......@@ -15,6 +15,10 @@ export const getLoanpage = (params) => {
export const distributeLoan = (tenantId, data) => {
return request.post(`/LoanDistribute/distribute?tenantId=${tenantId}`, data);
};
// 手动调整分配CPE,确认
export const confirm = (data) => {
return request.post(`/LoanDistribute/confirm`, data);
};
// 系统自动分配; 分配到CPE
export const distributeCpe = (data) => {
return request.post(`/LoanDistribute/distributeCpe?type=${data.type}`, data);
......
......@@ -22,7 +22,6 @@
<template #left_buttons>
<el-button
type="primary"
:disabled="!selectdList || selectdList.length !== 1"
@click="allocation"
>分配
</el-button>
......@@ -239,7 +238,6 @@
const allocation = (row) => {
allocationModalRef.value.openModal(
JSON.parse(JSON.stringify(selectdList.value[0])),
JSON.parse(JSON.stringify(curParam.value))
);
};
......
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