JS map 代替 for 循环

billList = billList.map(item => ({
  ...item,
  list: item.list.map(ite => ({
    ...ite,
    title: Decrypt(ite.title)
  }))
}))
console.log(billList)