123456789101112131415161718192021222324 |
- 'use strict';
- /**
- * CLD接口路由
- *
- * @author EllisRan.
- * @date 2018/9/25
- * @version
- */
- import express from "express";
- import CLDController from "../controllers/cld_controller";
- module.exports = function (app) {
- let router = express.Router();
- let cldController = new CLDController();
- // 登录页面action
- router.get('/getCategoryStaff', cldController.getCategoryStaff);
- router.get('/getUsersAndCompilation', cldController.getUsersAndCompilationList);
- app.use('/cld',router)
- };
|