|
|
@ -171,6 +171,17 @@ export function createPdfByCustomer(data) { |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
// 客户账单明细--导出
|
|
|
|
export function exportExcel(data) { |
|
|
|
return request({ |
|
|
|
url: '/fin/finuncollectedreceivablesdetailed/exportExcel', |
|
|
|
method: 'post', |
|
|
|
responseType: 'blob', // 表明返回服务器返回的数据类型
|
|
|
|
data: data, |
|
|
|
headers: { 'Content-Type': 'application/json' } |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
// 收款款项确认
|
|
|
|
export function ctskd(data) { |
|
|
|
return request({ |
|
|
|