download.js 265 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 /** * 下载 * @author: zxr * @date: 2016/08/08 */ 'use strict'; const index = (req, res) => { res.display('index', { module: 'partial', page: 'index', title: 'Yoho!buy有货' }); }; module.exports = { index // 下载 };