|
|
function index(req, res) {
|
|
|
res.render('group/index', {
|
|
|
title: '有货福利团',
|
|
|
page: 'group',
|
|
|
localCss: true,
|
|
|
nodownload: true,
|
|
|
width750: true,
|
|
|
wechatShare: true
|
|
|
});
|
|
|
|
|
|
const {GroupService} = require('../models/group-service');
|
|
|
|
|
|
function index(req, res, next) {
|
|
|
req.ctx(GroupService).index()
|
|
|
.then(result => {
|
|
|
return res.render('group/index', {
|
|
|
title: '有货福利团',
|
|
|
page: 'group',
|
|
|
localCss: true,
|
|
|
nodownload: true,
|
|
|
width750: true,
|
|
|
wechatShare: true,
|
|
|
floors: result
|
|
|
});
|
|
|
}).catch(next);
|
|
|
|
|
|
}
|
|
|
|
|
|
module.exports = {
|
...
|
...
|
|