app-agreement.js
347 Bytes
/**
* 服务条款
* @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
});
};
module.exports = {
privacy
};