getOrderList() { reqOrderList(this.userId, 1, 100).then(res => { console.log('reqOrderList', res) if (res.data.code == 200) { this.orderlist = res.data.data.list } this.orderlist.forEach((item, index) => { let flag = true this.orderi.forEach((item2, index2) => { if (item.time === item2.time) { flag = false this.orderi[index2].children.push(item) } }) if (flag) { this.orderi.push({ time: item.time, children: [item] }) }
时间: 2024-01-15 17:03:34 浏览: 81
Node.js+Express+MongoDB实现简单登录注册功能
3星 · 编辑精心推荐
这段代码看起来像是Vue.js的组件或者页面中的JavaScript代码,它的作用是获取用户的订单列表并按照时间进行分类。具体来说,它调用了一个名为reqOrderList的函数来获取订单列表,然后根据返回的数据将订单按照时间分组并保存到一个名为orderi的数组中。最终,该组件或页面可能会使用这些数据来展示用户的订单列表。
阅读全文