Authored by 郭成尧

title

... ... @@ -127,12 +127,13 @@ const logistic = (req, res, next) => {
}).then(result => {
res.render('logistic', _.assign(result, {
pageHeader: headerModel.setNav({
navTitle: '订单详情',
navTitle: '物流信息',
navBtn: false
}),
module: 'home',
page: 'logistic',
logisticInfoPage: true
logisticInfoPage: true,
title: '物流信息'
}));
}).catch(next);
};
... ...
... ... @@ -26,7 +26,8 @@ const refund = {
module: 'home',
pageHeader: headerData,
page: 'refund',
localCss: true
localCss: true,
title: '退货申请'
});
},
order(req, res, next) {
... ... @@ -66,7 +67,8 @@ const refund = {
pageHeader: headerData,
applyid: req.query.applyid,
type: req.query.type,
localCss: true
localCss: true,
title: '退换货订单列表'
});
},
... ... @@ -110,7 +112,8 @@ const refund = {
page: 'refund-status',
applyId: applyId,
type: 'refund',
localCss: true
localCss: true,
title: '退货状态'
});
},
exchangeStatus(req, res) {
... ... @@ -128,7 +131,8 @@ const refund = {
page: 'refund-status',
applyId: applyId,
type: 'exchange',
localCss: true
localCss: true,
title: '换货状态'
});
},
statusDetail(req, res, next) {
... ... @@ -161,7 +165,8 @@ const refund = {
module: 'home',
page: 'refund-order',
pageHeader: headerData,
localCss: true
localCss: true,
title: '退换货订单列表'
});
},
... ...