快捷功能开发完成

This commit is contained in:
huangdeliang
2021-04-02 16:33:27 +08:00
parent 49f80af8a6
commit f412a4e70e
18 changed files with 739 additions and 202 deletions

View File

@ -182,7 +182,7 @@ export default {
}
if (idx === res.rows.length - 1) {
arr.forEach((obj) => {
console.log({ obj });
// console.log({ obj });
if (obj.children) {
obj.amount = obj.children.reduce(
(a, c) => a + (c.afterSaleCommissOrder === 0 ? c.amount : 0),
@ -193,7 +193,7 @@ export default {
}
return arr;
}, []);
console.log(this.orderList);
// console.log(this.orderList);
this.loading = false;
});
},