lrf 2 년 전
부모
커밋
f056776f28
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      app/service/user/cashBack.js

+ 0 - 1
app/service/user/cashBack.js

@@ -15,7 +15,6 @@ class CashBackService extends CrudService {
   async computedTotal({ customer }) {
     assert(customer, '缺少用户信息');
     const res = await this.model.find({ inviter: customer });
-    console.log(res);
     const total = res.reduce((p, n) => {
       let money = n.money;
       if (!(n.source === '0' || n.source === '1')) money = -money;