Commit f6129446 authored by 罗超's avatar 罗超

1

parent 8702d0b1
......@@ -145,10 +145,15 @@ export default {
// res.data.GeographicTag = res.data.GeographicTag.split(',')
this.details = res.data;
// #ifdef MP-ALIPAY
this.details.BookingInfo = parseHtml(this.details.BookingInfo);
this.details.TicketNotice = parseHtml(this.details.TicketNotice);
this.details.About = parseHtml(this.details.About);
console.log("tag", this.details);
if (this.details.TicketNotice) {
this.details.TicketNotice = parseHtml(res.data.TicketNotice);
}
if (this.details.BookingInfo) {
this.details.BookingInfo = parseHtml(res.data.BookingInfo);
}
if (this.details.About) {
this.details.About = parseHtml(res.data.About);
}
// #endif
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment