|
@@ -757,6 +757,16 @@ const exportSuperviseSettlementExcel = () => {
|
|
|
}
|
|
}
|
|
|
const exportSuperviseSettlementDetailExcel = () => {
|
|
const exportSuperviseSettlementDetailExcel = () => {
|
|
|
api.settlementApi.exportSuperviseSettlementDetailExcel({
|
|
api.settlementApi.exportSuperviseSettlementDetailExcel({
|
|
|
|
|
+ invoiceId: recordForm2.value.invoiceId,
|
|
|
|
|
+ companyId: recordForm2.value.companyId,
|
|
|
|
|
+ invoiceParty: recordForm2.value.invoiceParty,
|
|
|
|
|
+ settlementPerson: recordForm2.value.settlementPerson,
|
|
|
|
|
+ status: recordForm2.value.status,
|
|
|
|
|
+ settlementTimeStart: recordForm2.value.settlementTime?.[0],
|
|
|
|
|
+ settlementTimeEnd: recordForm2.value.settlementTime?.[1],
|
|
|
|
|
+ pages: pages.value,
|
|
|
|
|
+ size: size.value,
|
|
|
|
|
+ invoiceTypes: ['1']
|
|
|
|
|
|
|
|
}).then((res: any) => {
|
|
}).then((res: any) => {
|
|
|
const blob = new Blob([res], { type: 'application/vnd.ms-excel' });
|
|
const blob = new Blob([res], { type: 'application/vnd.ms-excel' });
|
|
@@ -777,7 +787,16 @@ const exportSuperviseSettlementDetailExcel = () => {
|
|
|
}
|
|
}
|
|
|
const exportSuperviseSettlementDetailJyExcel = () => {
|
|
const exportSuperviseSettlementDetailJyExcel = () => {
|
|
|
api.settlementApi.exportSuperviseSettlementDetailJyExcel({
|
|
api.settlementApi.exportSuperviseSettlementDetailJyExcel({
|
|
|
-
|
|
|
|
|
|
|
+ invoiceId: recordForm3.value.invoiceId,
|
|
|
|
|
+ companyId: recordForm3.value.companyId,
|
|
|
|
|
+ invoiceParty: recordForm3.value.invoiceParty,
|
|
|
|
|
+ settlementPerson: recordForm3.value.settlementPerson,
|
|
|
|
|
+ status: recordForm3.value.status,
|
|
|
|
|
+ settlementTimeStart: recordForm3.value.settlementTime?.[0],
|
|
|
|
|
+ settlementTimeEnd: recordForm3.value.settlementTime?.[1],
|
|
|
|
|
+ pages: pages.value,
|
|
|
|
|
+ size: size.value,
|
|
|
|
|
+ invoiceTypes: ['3']
|
|
|
}).then((res: any) => {
|
|
}).then((res: any) => {
|
|
|
const blob = new Blob([res], { type: 'application/vnd.ms-excel' });
|
|
const blob = new Blob([res], { type: 'application/vnd.ms-excel' });
|
|
|
const fileName = '手续费应收非车险结算报表明细' + new Date().getTime() + '.xlsx';
|
|
const fileName = '手续费应收非车险结算报表明细' + new Date().getTime() + '.xlsx';
|