...
|
...
|
@@ -12,6 +12,15 @@ const helpers = global.yoho.helpers; |
|
|
exports.QRcode = (req, res, next) => {
|
|
|
let id = req.query.orderCode || 0;
|
|
|
|
|
|
let bg={
|
|
|
'16-1':'//img13.static.yhbimg.com/yhb-img02/2016/07/28/14/02509790c87f7b26fc523fc81cdd2ee684.jpg',
|
|
|
'17-1':'//img13.static.yhbimg.com/yhb-img02/2016/07/28/14/02509790c87f7b26fc523fc81cdd2ee684.jpg',
|
|
|
'16-2':'//img13.static.yhbimg.com/yhb-img02/2016/07/28/14/0243ee8b76d1af13fe546b3538036ab3a9.jpg',
|
|
|
'17-2':'//img13.static.yhbimg.com/yhb-img02/2016/07/28/14/028d1fa99a0a22d882587aa0a309b41637.jpg'
|
|
|
}
|
|
|
|
|
|
let bgkey='16-1';
|
|
|
|
|
|
QRcodeModel.getQRcodeData(id,req.user.uid).then((result)=>{
|
|
|
if (result) {
|
|
|
result.ticks = result.ticks.map(item=>{
|
...
|
...
|
@@ -20,12 +29,16 @@ exports.QRcode = (req, res, next) => { |
|
|
}
|
|
|
return item;
|
|
|
});
|
|
|
if(result.ticks.length){
|
|
|
bgkey=[/月(\d+)/g.exec(result.ticks[0].entrance_time)[1],result.ticks[0].ticket_type].join('-');
|
|
|
}
|
|
|
}
|
|
|
|
|
|
let vm = {
|
|
|
path: [{href: helpers.urlFormat('/'), name: 'YOHO!BUY 有货首页'}, {name: '个人中心'},{name: '订单中心'}, {name: '查看二维码'}],
|
|
|
qrcodeData: result,
|
|
|
code: id,
|
|
|
bgsrc:bg[bgkey],
|
|
|
returnOrder: helpers.urlFormat('/home/orders')
|
|
|
};
|
|
|
|
...
|
...
|
|