|
|
@@ -593,7 +593,20 @@ const handleExport = (type) => {
|
|
|
}
|
|
|
const exportSuperviseSettlementExcel = () => {
|
|
|
api.settlementApi.exportSuperviseSettlementExcel({
|
|
|
-
|
|
|
+ agreementType: '2',
|
|
|
+ settlementId: recordForm1.value.settlementId,
|
|
|
+ invoiceParty: recordForm1.value.invoiceParty,
|
|
|
+ invoiceRiskType: recordForm1.value.invoiceRiskType,
|
|
|
+ status: recordForm1.value.status,
|
|
|
+ companyId: recordForm1.value.companyId,
|
|
|
+ invoiceType: recordForm1.value.invoiceType,
|
|
|
+ settlementPerson: recordForm1.value.settlementPerson,
|
|
|
+ invoiceId: recordForm1.value.invoiceId,
|
|
|
+ settlementDateStart: recordForm1.value.settlementTime?.[0],
|
|
|
+ settlementDateEnd: recordForm1.value.settlementTime?.[1],
|
|
|
+ pages: pages.value,
|
|
|
+ size: size.value,
|
|
|
+ invoiceTypes: ['1', '3']
|
|
|
}).then((res: any) => {
|
|
|
const blob = new Blob([res], { type: 'application/vnd.ms-excel' });
|
|
|
const fileName = '手续费应收结算报表明细' + new Date().getTime() + '.xlsx';
|