sjy-ecos/routes/ei.js

21 lines
403 B
JavaScript
Raw Normal View History

2016-12-23 10:16:12 +00:00
var express = require('express');
var router = express.Router();
router.get('/', function (req, res, next) {
res.render('ei', {
2017-02-07 07:05:05 +00:00
page_cont: null,
2016-12-23 10:16:12 +00:00
page_title: '评价指标数据'
});
});
2017-02-07 07:05:05 +00:00
router.get('/classification_area', function (req, res, next) {
res.render('ei', {
page_title: 'classification_area',
page_cont: 'inc',
inc_tag: 'classification_area'
});
});
2016-12-23 10:16:12 +00:00
module.exports = router;