admin.controller.ts 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. import {
  2. Body,
  3. Controller,
  4. Del,
  5. Get,
  6. Inject,
  7. Param,
  8. Post,
  9. } from '@midwayjs/core';
  10. import { AdminService } from '../../service/system/admin.service';
  11. import { RF } from '../../response/CustomerResponse';
  12. import { Page, Query } from '../../decorator/page.decorator';
  13. import * as bcrypt from 'bcryptjs';
  14. import { get } from 'lodash';
  15. @Controller('/admin')
  16. export class AdminController {
  17. @Inject()
  18. service: AdminService;
  19. @Post('/')
  20. async create(@Body() body) {
  21. await this.service.checkInDB(body);
  22. // 处理密码
  23. const passowrd = get(body, 'password');
  24. if (passowrd) {
  25. const salt = bcrypt.genSaltSync(10);
  26. const hash = bcrypt.hashSync(passowrd, salt);
  27. Object.assign(body, { password: hash });
  28. }
  29. const data = await this.service.create(body);
  30. return RF.success(data);
  31. }
  32. @Get('/')
  33. async query(@Query() query, @Page() page) {
  34. const result = await this.service.query(query, page);
  35. return RF.success(result);
  36. }
  37. @Get('/:id')
  38. async fetch(@Param('id') id: number) {
  39. const result = await this.service.fetch({ id });
  40. return RF.success(result);
  41. }
  42. @Post('/:id')
  43. async update(@Param('id') id: number, @Body() body) {
  44. // 删除account字段,不允许更改
  45. delete body.account;
  46. const result = await this.service.update({ id }, body);
  47. return RF.success(result);
  48. }
  49. @Del('/:id')
  50. async delete(@Param('id') id: number) {
  51. await this.service.delete({ id });
  52. return RF.success();
  53. }
  54. }