Authored by 郭成尧

localcss

... ... @@ -18,6 +18,7 @@ const exchange = {
navBtn: false
}),
title: '换货申请',
localCss: true
});
},
... ...
... ... @@ -25,7 +25,8 @@ const refund = {
res.render('refund/refund', {
module: 'home',
pageHeader: headerData,
page: 'refund'
page: 'refund',
localCss: true
});
},
order(req, res, next) {
... ... @@ -64,7 +65,8 @@ const refund = {
page: 'refund-logistics',
pageHeader: headerData,
applyid: req.query.applyid,
type: req.query.type
type: req.query.type,
localCss: true
});
},
... ... @@ -107,7 +109,8 @@ const refund = {
pageHeader: headerData,
page: 'refund-status',
applyId: applyId,
type: 'refund'
type: 'refund',
localCss: true
});
},
exchangeStatus(req, res) {
... ... @@ -124,7 +127,8 @@ const refund = {
pageHeader: headerData,
page: 'refund-status',
applyId: applyId,
type: 'exchange'
type: 'exchange',
localCss: true
});
},
statusDetail(req, res, next) {
... ... @@ -156,7 +160,8 @@ const refund = {
res.render('refund/refund-order', {
module: 'home',
page: 'refund-order',
pageHeader: headerData
pageHeader: headerData,
localCss: true
});
},
... ...