|
@@ -97,9 +97,9 @@ export default {
|
|
|
console.log(res);
|
|
|
this.orderList = res.data.category;
|
|
|
console.log(this.orderList.length)
|
|
|
- for (let i = 0; i < res.data.data.category.length; i++) {
|
|
|
+ for (let i = 0; i < this.orderList.length; i++) {
|
|
|
// this.orderList = res.data.data.category[i]
|
|
|
- this.gatTime = res.data.data.category[i].gatTime;
|
|
|
+ this.gatTime = this.orderList[i].gatTime;
|
|
|
}
|
|
|
})
|
|
|
.catch((err) => {
|