代码调整

This commit is contained in:
joylink_cuiweidong 2022-08-04 15:14:08 +08:00
parent 85f7844788
commit e6ffe9d087

View File

@ -1029,10 +1029,9 @@ function getTicketInfoById(ticket) {
let info = ''; let info = '';
if (ticket.type == 'GREEN_LICENCE') { if (ticket.type == 'GREEN_LICENCE') {
info = ',编号为' + ticket.number + ',原因为' + ticket.reason + ',车次号为' + ticket.tripNumber + info = ',编号为' + ticket.number + ',原因为' + ticket.reason + ',车次号为' + ticket.tripNumber +
',签名为' + ticket.signature + ',站名印为' + ticket.stationSeal + ',签名为' + ticket.signature +
'日期为' + ticket.year + '年' + ticket.moon + '月' + ticket.day + '日'; '' + ticket.line + '线上发车' +
// line: '', ',日期为' + ticket.year + '年' + ticket.moon + '月' + ticket.day + '日';
// stationSeal: '',
} }
return '类型为' + ticketTypeMap[ticket.type] + info; return '类型为' + ticketTypeMap[ticket.type] + info;
} }