Commit 330f8b11 authored by youjie's avatar youjie
parents 38554c38 bc8b0bac
...@@ -82,7 +82,8 @@ ...@@ -82,7 +82,8 @@
<OrderNotice :vshowG="vshowG" :feature="feature"></OrderNotice> <OrderNotice :vshowG="vshowG" :feature="feature"></OrderNotice>
<!-- 签证信息 --> <!-- 签证信息 -->
<VisaInformation :vshowG="vshowG" :vshowM="vshowM" :vshowJ="vshowJ" :vshowI="vshowI" :feature="feature" :orderMsg="orderMsg"> <VisaInformation :vshowG="vshowG" :vshowM="vshowM" :vshowJ="vshowJ" :vshowI="vshowI" :feature="feature"
:orderMsg="orderMsg">
</VisaInformation> </VisaInformation>
</div> </div>
</div> </div>
...@@ -594,20 +595,12 @@ ...@@ -594,20 +595,12 @@
this.SourceData.Id = 0; this.SourceData.Id = 0;
if (this.$route.query.orderId > 0) { if (this.$route.query.orderId > 0) {
this.SourceData.orderId = this.$route.query.orderId; this.SourceData.orderId = this.$route.query.orderId;
var str = ""; this.SourceData.leaderInfo = this.orderMsg.leaderInfo;
if (this.orderMsg.leaderName) { this.SourceData.gatheringTime = this.orderMsg.gatheringTimeInfo;
str = this.orderMsg.leaderName; this.SourceData.airportService = this.orderMsg.airportServiceInfo;
} this.SourceData.gatherIdent = this.orderMsg.gatherIdentInfo;
if (this.orderMsg.leaderMobile) { this.SourceData.emergencyContact = this.orderMsg.emergencyContactInfo;
str += "/" + this.orderMsg.leaderMobile; this.SourceData.gatheringAddress = this.orderMsg.gatheringAddressInfo;
}
this.SourceData.leaderInfo = str;
this.SourceData.gatheringTime = this.orderMsg.gatheringTime;
this.SourceData.airportService = this.orderMsg.airportServicePerson + "/" + this.orderMsg
.airportServicePhone;
this.SourceData.gatherIdent = this.orderMsg.bName;
this.SourceData.emergencyContact = this.orderMsg.sellName + "/" + this.orderMsg.sellTel;
this.SourceData.gatheringAddress = this.orderMsg.gatheringAddress;
if (data.priceList != null && data.priceList.length > 0) { if (data.priceList != null && data.priceList.length > 0) {
var array = JSON.parse(JSON.stringify(data.priceList[0].priceFlight)); var array = JSON.parse(JSON.stringify(data.priceList[0].priceFlight));
this.SourceData.travelOrderFlightList = []; this.SourceData.travelOrderFlightList = [];
......
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