Showing
2 changed files
with
11 additions
and
5 deletions
@@ -25,7 +25,8 @@ const refund = { | @@ -25,7 +25,8 @@ const refund = { | ||
25 | res.render('refund/refund', { | 25 | res.render('refund/refund', { |
26 | module: 'home', | 26 | module: 'home', |
27 | pageHeader: headerData, | 27 | pageHeader: headerData, |
28 | - page: 'refund' | 28 | + page: 'refund', |
29 | + localCss: true | ||
29 | }); | 30 | }); |
30 | }, | 31 | }, |
31 | order(req, res, next) { | 32 | order(req, res, next) { |
@@ -64,7 +65,8 @@ const refund = { | @@ -64,7 +65,8 @@ const refund = { | ||
64 | page: 'refund-logistics', | 65 | page: 'refund-logistics', |
65 | pageHeader: headerData, | 66 | pageHeader: headerData, |
66 | applyid: req.query.applyid, | 67 | applyid: req.query.applyid, |
67 | - type: req.query.type | 68 | + type: req.query.type, |
69 | + localCss: true | ||
68 | }); | 70 | }); |
69 | }, | 71 | }, |
70 | 72 | ||
@@ -107,7 +109,8 @@ const refund = { | @@ -107,7 +109,8 @@ const refund = { | ||
107 | pageHeader: headerData, | 109 | pageHeader: headerData, |
108 | page: 'refund-status', | 110 | page: 'refund-status', |
109 | applyId: applyId, | 111 | applyId: applyId, |
110 | - type: 'refund' | 112 | + type: 'refund', |
113 | + localCss: true | ||
111 | }); | 114 | }); |
112 | }, | 115 | }, |
113 | exchangeStatus(req, res) { | 116 | exchangeStatus(req, res) { |
@@ -124,7 +127,8 @@ const refund = { | @@ -124,7 +127,8 @@ const refund = { | ||
124 | pageHeader: headerData, | 127 | pageHeader: headerData, |
125 | page: 'refund-status', | 128 | page: 'refund-status', |
126 | applyId: applyId, | 129 | applyId: applyId, |
127 | - type: 'exchange' | 130 | + type: 'exchange', |
131 | + localCss: true | ||
128 | }); | 132 | }); |
129 | }, | 133 | }, |
130 | statusDetail(req, res, next) { | 134 | statusDetail(req, res, next) { |
@@ -156,7 +160,8 @@ const refund = { | @@ -156,7 +160,8 @@ const refund = { | ||
156 | res.render('refund/refund-order', { | 160 | res.render('refund/refund-order', { |
157 | module: 'home', | 161 | module: 'home', |
158 | page: 'refund-order', | 162 | page: 'refund-order', |
159 | - pageHeader: headerData | 163 | + pageHeader: headerData, |
164 | + localCss: true | ||
160 | }); | 165 | }); |
161 | }, | 166 | }, |
162 | 167 |
-
Please register or login to post a comment