app-agreement.js
893 Bytes
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
/**
* 服务条款
* @author: zxr<xiaoru.zhang@yoho.cn>
* @date: 2016/10/25
*/
'use strict';
const headerModel = require('../../../doraemon/models/header'); // 头部model
const privacy = (req, res) => {
res.render('agreement/privacy', {
title: '隐私条款',
width750: true
});
};
const newpower = (req, res) => {
res.render('agreement/newpower', {
title: '关于新力传媒',
width750: true
});
};
const aboutYoho = (req, res) => {
res.render('agreement/yohobuy', {
title: '关于YOHO!BUY有货',
width750: true
});
};
const agreement = (req, res) => {
res.render('agreement/agreement', {
module: 'passport',
title: 'YOHO!BUY有货app服务条款',
page: 'agreement',
width750: true
});
};
module.exports = {
privacy,
newpower,
aboutYoho,
agreement
};