Commit 70fcf958 authored by 黄奎's avatar 黄奎

删除虚拟航班调整

parent d42d6d3c
...@@ -1596,7 +1596,7 @@ ...@@ -1596,7 +1596,7 @@
}, },
setDisDirectFlight(obj) { setDisDirectFlight(obj) {
if (this.CurrentUserInfo.UseFlightType == 0) { if (this.CurrentUserInfo.UseFlightType == 0) {
if (obj.priceFlight && obj.priceFlight.length > 0) { if (obj.priceFlight && obj.priceFlight.length >= 0) {
this.priceData.PriceFlight = JSON.parse(JSON.stringify(obj.priceFlight)); this.priceData.PriceFlight = JSON.parse(JSON.stringify(obj.priceFlight));
} }
} else { } else {
......
...@@ -1597,7 +1597,7 @@ ...@@ -1597,7 +1597,7 @@
}, },
setDisDirectFlight(obj) { setDisDirectFlight(obj) {
if (this.CurrentUserInfo.UseFlightType == 0) { if (this.CurrentUserInfo.UseFlightType == 0) {
if (obj.priceFlight && obj.priceFlight.length > 0) { if (obj.priceFlight && obj.priceFlight.length >= 0) {
this.priceData.PriceFlight = JSON.parse(JSON.stringify(obj.priceFlight)); this.priceData.PriceFlight = JSON.parse(JSON.stringify(obj.priceFlight));
} }
} else { } else {
......
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