12345678910111213 |
- 'use strict';
- // 系统接口
- module.exports = app => {
- const { system } = app.controller;
- app.router.post('/login', system.login);
- app.router.post('/register', system.register);
- app.router.post('/forget', system.forget);
- app.router.post('/getUser', system.getUser);
- app.router.post('/getList', system.getList);
- app.router.post('/getMuchList', system.getMuchList);
- };
|