...
|
...
|
@@ -74,10 +74,39 @@ const exchange = (req, res, next) => { |
|
|
next();
|
|
|
};
|
|
|
|
|
|
const detailExchange = (req, res) => {
|
|
|
const uid = global.yoho.uid || '8050560';
|
|
|
const page = req.query.page;
|
|
|
|
|
|
res.display('index', {
|
|
|
page: 'exchange-detail',
|
|
|
isMe: true,
|
|
|
content: {
|
|
|
nav: mcHandler.getMeCrumb('我的退/换货'),
|
|
|
navigation: mcHandler.getSideMenu('我的退/换货'),
|
|
|
banner: 'http://placehold.it/{width}x{height}',
|
|
|
exchange: {
|
|
|
title: '换货申请',
|
|
|
hidePrice: true,
|
|
|
orderGoods: {
|
|
|
goodsImage: '//img13.static.yhbimg.com/goodsimg/2015/08/25/02/02166fbbc91037e5a43e89e7d3628834da.jpg?imageMogr2/thumbnail/65x90/extent/65x90/background/d2hpdGU=/position/center/quality/80',
|
|
|
productName: 'TEEBACCO 极简笑脸印花卫衣',
|
|
|
colorName: '黑色',
|
|
|
sizeName: 'M',
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
}
|
|
|
});
|
|
|
};
|
|
|
|
|
|
module.exports = {
|
|
|
index,
|
|
|
detail,
|
|
|
refund,
|
|
|
refundApply,
|
|
|
exchange
|
|
|
exchange,
|
|
|
detailExchange
|
|
|
}; |
...
|
...
|
|