cheny 5 years ago
parent
commit
f59342f6d7
1 changed files with 2 additions and 1 deletions
  1. 2 1
      app/controller/transaction.js

+ 2 - 1
app/controller/transaction.js

@@ -15,7 +15,8 @@ class TransactionController extends Controller {
 
   async findTransactionList() {
     const res = await this.service.findTransactionList(this.ctx.request.body);
-    this.ctx.ok({ ...res });
+    // this.ctx.ok({ ...res });
+    this.ctx.ok({ res });
   }
 }