1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| import { Get, Inject, Provide } from '@midwayjs/core';
| import { CoolController, BaseController } from '@cool-midway/core';
| import { UserAddressEntity } from '../../entity/address';
| import { UserAddressService } from '../../service/address';
|
| /**
| * 地址
| */
| @Provide()
| @CoolController({
| api: ['add', 'delete', 'update', 'info', 'list', 'page'],
| entity: UserAddressEntity,
| service: UserAddressService,
| insertParam: ctx => {
| return {
| userId: ctx.user.id,
| };
| },
| pageQueryOp: {
| where: async ctx => {
| return [['userId =:userId', { userId: ctx.user.id }]];
| },
| addOrderBy: {
| isDefault: 'DESC',
| },
| },
| })
| export class AppUserAddressController extends BaseController {
| @Inject()
| userAddressService: UserAddressService;
|
| @Inject()
| ctx;
|
| @Get('/default', { summary: '默认地址' })
| async default() {
| return this.ok(await this.userAddressService.default(this.ctx.user.id));
| }
| }
|
|