students.js
2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/**
* 学生优惠controller
* @author: ghw<hongwei.gao@yoho.cn>
* @date: 2016/8/5
*/
'use strict';
const mRoot = '../models';
const helpers = global.yoho.helpers;
const studentsModel = require(`${mRoot}/students`); // students 页 model
/**
* students 首页
* @param {[type]} req [description]
* @param {[type]} res [description]
* @return {[type]} [description]
*/
exports.index = (req, res, next) => {
let channel = req.query.channel || req.cookies._Channel || 'boys';
studentsModel.getStudentsData(channel).then(result => {
let responseData = studentsModel.getTestData(channel);
// let responseData = {};
Object.assign(responseData, result);
res.render('students/index', responseData);
}).catch(next);
};
/**
* 学校地区
* @param {[type]} req [description]
* @param {[type]} res [description]
* @return {[type]} [description]
*/
exports.schoolArea = (req, res, next) => {
studentsModel.getSchoolArea().then(result => {
res.json(result);
}).catch(next);
};
/**
* 学校列表
* @param {[type]} req [description]
* @param {[type]} res [description]
* @return {[type]} [description]
*/
exports.schoolList = (req, res, next) => {
let areaCode = req.query.areaCode || 32;
studentsModel.getSchoolList(areaCode).then(result => {
res.json(result);
}).catch(next);
};
/**
* 学历层次
* @param {[type]} req [description]
* @param {[type]} res [description]
* @return {[type]} [description]
*/
exports.eduLevel = (req, res, next) => {
studentsModel.getEduLevel().then(result => {
res.json(result);
}).catch(next);
};
/**
* 学生验证
* @param {[type]} req [description]
* @param {[type]} res [description]
* @return {[type]} [description]
*/
exports.verify = (req, res, next) => {
req.user.uid= 13311991;
if (!req.user.uid) {
res.send({code: 200, data: helpers.urlFormat('/signin.html')});
}
studentsModel.verifyIdentity(req.user.uid, req.query).then(result => {
res.json(result);
}).catch(next);
};