|
@@ -14,9 +14,9 @@ class TransactionController extends Controller {
|
|
}
|
|
}
|
|
|
|
|
|
async findTransactionList() {
|
|
async findTransactionList() {
|
|
- const res = await this.service.findTransactionList(this.ctx.request.body);
|
|
|
|
|
|
+ const data = await this.service.findTransactionList(this.ctx.request.body);
|
|
// this.ctx.ok({ ...res });
|
|
// this.ctx.ok({ ...res });
|
|
- this.ctx.ok({ res });
|
|
|
|
|
|
+ this.ctx.ok({ data });
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|