Authored by 陈峰

Merge branch 'gray' into 'master'

Gray



See merge request !359
... ... @@ -36,7 +36,7 @@ router.post('/ensure/compute', auth, ensure.compute); // 价格重新计算
router.post('/ensure/submit', auth, csrf, ensure.submitCheck, ensure.submit); // 订单提交
router.post('/property/checksms', ensure.sendCheckSms); // 虚拟资产使用校验
router.get('/easypay', auth, easypay.index); // 限购商品快捷结算页
router.get('/easypay', auth, csrf, easypay.index); // 限购商品快捷结算页
router.post('/easypay/compute', auth, easypay.compute); // 价格重新计算
router.post('/easypay/submit', auth, easypay.submit); // 限购商品订单提交
... ...
... ... @@ -91,6 +91,7 @@ module.exports = {
maxFiles: 1,
tailable: true,
maxsize: Math.pow(1024, 3),
zippedArchive: true,
timestamp() {
return new Date().toString();
}
... ... @@ -102,6 +103,7 @@ module.exports = {
maxFiles: 1,
tailable: true,
maxsize: Math.pow(1024, 3),
zippedArchive: true,
handleExceptions: true,
timestamp() {
return new Date().toString();
... ...