system.js 384 B

12345678910111213
  1. 'use strict';
  2. // 系统接口
  3. module.exports = app => {
  4. const { system } = app.controller;
  5. app.router.post('/login', system.login);
  6. app.router.post('/register', system.register);
  7. app.router.post('/forget', system.forget);
  8. app.router.post('/getUser', system.getUser);
  9. app.router.post('/getList', system.getList);
  10. app.router.post('/getMuchList', system.getMuchList);
  11. };