const result = Promise.all(
data.map(async (item) => {
if (item.kind === "multi") {
const res = await this.getPriceData(item);
if (res) {
item.poolvalue = res.usdtNum;
item.price = res.price;
}
}
})
);
await result;