qrcode.js
2.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/**
* 个人中心二维码 controller
* @author: weiqingting<qingting.wei@yoho.cn>
* @date: 2016/05/16
*/
'use strict';
const QRcodeModel = require('../models/qrcode');
exports.QRcode = (req, res, next) => {
let id = req.params.id || 0;
// QRcodeModel.getQRcodeData(id, req.user.uid).then((result)=>{
let result={
"ticks": [{
"ticket_code":"8611779901",
"qr_image":"http://img11.static.yhbimg.com/yhb-img01/2016/07/28/08/017bd1eb95613aef7424c0998ee9bc88c9.jpg?imageView2/2/w/185/h/248/q/70",
"passkit":"Y",
//门票类型,1展览票 2套票
"ticket_type":"2",
//座位号
"seat_no":"A区1排座",
//入场时间
"entrance_time":"9月16 10:00"
},{
"ticket_code":"8611779901",
"qr_image":"http://img11.static.yhbimg.com/yhb-img01/2016/07/28/08/017bd1eb95613aef7424c0998ee9bc88c9.jpg?imageView2/2/w/185/h/248/q/70",
"passkit":"Y",
//门票类型,1展览票 2套票
"ticket_type":"2",
//座位号
"seat_no":"A区1排座",
//入场时间
"entrance_time":"9月16 10:00"
},{
"ticket_code":"8611779901",
"qr_image":"http://img11.static.yhbimg.com/yhb-img01/2016/07/28/08/017bd1eb95613aef7424c0998ee9bc88c9.jpg?imageView2/2/w/185/h/248/q/70",
"passkit":"Y",
//门票类型,1展览票 2套票
"ticket_type":"2",
//座位号
"seat_no":"A区1排座",
//入场时间
"entrance_time":"9月16 10:00"
},{
"ticket_code":"8611779901",
"qr_image":"http://img11.static.yhbimg.com/yhb-img01/2016/07/28/08/017bd1eb95613aef7424c0998ee9bc88c9.jpg?imageView2/2/w/185/h/248/q/70",
"passkit":"Y",
//门票类型,1展览票 2套票
"ticket_type":"2",
//座位号
"seat_no":"A区1排座",
//入场时间
"entrance_time":"9月16 10:00"
}],
"title": "FURY ANIMALS Normal迷彩系列BUNNY短袖TEE"
};
if (result) {
result.ticks = result.ticks.map(item=>{
if (+item.ticket_type === 2) {
item.isgroup = true;
}
return item;
});
}
let vm = {
qrcodeData: result
};
res.render('QRcode', vm);
// }).catch(next);
};