Commit 18599f67 authored by youjie's avatar youjie
parents ede096a5 2195e1fe
...@@ -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