const keys = [
'item',
'des',
'qty',
'size',
'unitPrice',
'discountPct',
'totalPrice',
]
const res = [
['304248', '343308',...],
['AAA', 'BBB',...],
[2, 1,...],
['100 tests', '100 tests',...],
[295, 275,...],
[38, 38,...],
[365.8, 170.5,...],
]
变成
[
{
item: '304248',
des: 'AAA',
qty: '2',
size: '100 tests',
unitPrice: '295',
discountPct: '38',
totalPrice: '365.8',
},
{
item: '343308',
des: 'BBB',
qty: '1',
size: '100 tests',
unitPrice: '275',
discountPct: '38',
totalPrice: '170.5',
},
]