...
|
...
|
@@ -8,13 +8,13 @@ |
|
|
|
|
|
const router = require('express').Router(); // eslint-disable-line
|
|
|
const cRoot = './controllers';
|
|
|
const auth = require('../../doraemon/middleware/auth');
|
|
|
const demo = require(`${cRoot}/demo`);
|
|
|
const coupon = require(`${cRoot}/coupon`);
|
|
|
const wechat = require(`${cRoot}/wechat`);
|
|
|
const student = require(`${cRoot}/student`);
|
|
|
const live = require(`${cRoot}/live`);
|
|
|
const invite = require(`${cRoot}/invite`);
|
|
|
const auth = require('../../doraemon/middleware/auth');
|
|
|
|
|
|
const couponFloor = require(`${cRoot}/coupon-floor`);
|
|
|
const vipDay = require(`${cRoot}/vipDay`);
|
...
|
...
|
@@ -162,7 +162,7 @@ router.get('/redbag/2017', redbag.index); |
|
|
router.get('/individuation', individuation.productLst);
|
|
|
|
|
|
// 2016 年度账单
|
|
|
router.get('/annual-account', auth, annualAccount.index);
|
|
|
router.get('/annual-account', annualAccount.index);
|
|
|
router.get('/annual-account/share', annualAccount.share);
|
|
|
router.get('/app-downloads', appDownloads.index);
|
|
|
|
...
|
...
|
|