|
|
@@ -108,13 +108,24 @@ export default {
|
|
|
seatName: it.seatNo
|
|
|
})
|
|
|
}
|
|
|
+ let type = "";
|
|
|
+ // #ifdef H5
|
|
|
+ type = "H5";
|
|
|
+ // #endif
|
|
|
+ // #ifdef APP
|
|
|
+ type = "app";
|
|
|
+ // #endif
|
|
|
+ // #ifdef MP-WEIXIN
|
|
|
+ type = "jsapi";
|
|
|
+ // #endif
|
|
|
let da = {
|
|
|
cinemaId: this.cinemaInfo.restaurant_id,
|
|
|
showId: this.OrderDa.s.showId,
|
|
|
phone: this.userinfo.mobile,
|
|
|
showInfor: JSON.stringify(ar),
|
|
|
movieName: this.OrderDa.m.movieName,
|
|
|
- posterUrl: this.OrderDa.m.posterUrl
|
|
|
+ posterUrl: this.OrderDa.m.posterUrl,
|
|
|
+ trade_type: type,
|
|
|
}
|
|
|
post("local/cinemaOrder", da).then(res => {
|
|
|
if (res.code == 0 && res.data.prepayid) {
|