Authored by 郭成尧

title

@@ -127,12 +127,13 @@ const logistic = (req, res, next) => { @@ -127,12 +127,13 @@ const logistic = (req, res, next) => {
127 }).then(result => { 127 }).then(result => {
128 res.render('logistic', _.assign(result, { 128 res.render('logistic', _.assign(result, {
129 pageHeader: headerModel.setNav({ 129 pageHeader: headerModel.setNav({
130 - navTitle: '订单详情', 130 + navTitle: '物流信息',
131 navBtn: false 131 navBtn: false
132 }), 132 }),
133 module: 'home', 133 module: 'home',
134 page: 'logistic', 134 page: 'logistic',
135 - logisticInfoPage: true 135 + logisticInfoPage: true,
  136 + title: '物流信息'
136 })); 137 }));
137 }).catch(next); 138 }).catch(next);
138 }; 139 };
@@ -26,7 +26,8 @@ const refund = { @@ -26,7 +26,8 @@ const refund = {
26 module: 'home', 26 module: 'home',
27 pageHeader: headerData, 27 pageHeader: headerData,
28 page: 'refund', 28 page: 'refund',
29 - localCss: true 29 + localCss: true,
  30 + title: '退货申请'
30 }); 31 });
31 }, 32 },
32 order(req, res, next) { 33 order(req, res, next) {
@@ -66,7 +67,8 @@ const refund = { @@ -66,7 +67,8 @@ const refund = {
66 pageHeader: headerData, 67 pageHeader: headerData,
67 applyid: req.query.applyid, 68 applyid: req.query.applyid,
68 type: req.query.type, 69 type: req.query.type,
69 - localCss: true 70 + localCss: true,
  71 + title: '退换货订单列表'
70 }); 72 });
71 }, 73 },
72 74
@@ -110,7 +112,8 @@ const refund = { @@ -110,7 +112,8 @@ const refund = {
110 page: 'refund-status', 112 page: 'refund-status',
111 applyId: applyId, 113 applyId: applyId,
112 type: 'refund', 114 type: 'refund',
113 - localCss: true 115 + localCss: true,
  116 + title: '退货状态'
114 }); 117 });
115 }, 118 },
116 exchangeStatus(req, res) { 119 exchangeStatus(req, res) {
@@ -128,7 +131,8 @@ const refund = { @@ -128,7 +131,8 @@ const refund = {
128 page: 'refund-status', 131 page: 'refund-status',
129 applyId: applyId, 132 applyId: applyId,
130 type: 'exchange', 133 type: 'exchange',
131 - localCss: true 134 + localCss: true,
  135 + title: '换货状态'
132 }); 136 });
133 }, 137 },
134 statusDetail(req, res, next) { 138 statusDetail(req, res, next) {
@@ -161,7 +165,8 @@ const refund = { @@ -161,7 +165,8 @@ const refund = {
161 module: 'home', 165 module: 'home',
162 page: 'refund-order', 166 page: 'refund-order',
163 pageHeader: headerData, 167 pageHeader: headerData,
164 - localCss: true 168 + localCss: true,
  169 + title: '退换货订单列表'
165 }); 170 });
166 }, 171 },
167 172