修复了小bug

main
yang.yongquan 2023-01-03 20:23:32 +08:00
parent d2ec511675
commit ca60ee536b
1 changed files with 1 additions and 0 deletions

View File

@ -59,6 +59,7 @@ function displayInvoicesList(departureInvoice: Invoice, destinationInvoice: Invo
for(let i=0; i<otherInvoices.length; i++) { for(let i=0; i<otherInvoices.length; i++) {
othersData.children?.push({title: `附加票据-${i}`, key: `0-1-${i}`, isLeaf: true}); othersData.children?.push({title: `附加票据-${i}`, key: `0-1-${i}`, isLeaf: true});
} }
treeData.push(mainData)
treeData.push(othersData) treeData.push(othersData)
return treeData; return treeData;
} }