Commit 81ca5b3b authored by youjie's avatar youjie

no message

parent d2e18dce
......@@ -38,12 +38,7 @@ export default {
props: ["vshowG","feature",],
data() {
return {
title:
"北京-马德里-塞戈维亚-萨拉曼卡-贝尼多姆/小镇-瓦伦西亚-巴塞罗那(约 253km,约 3h)北京-马德里-塞戈维亚-萨拉曼卡-贝尼多姆/小镇-瓦伦西亚-巴塞罗那(约 253km,约 3h)",
day: "DAY",
backgroundColor: "",
textColor: "",
textColorOne: ""
};
},
......@@ -52,7 +47,7 @@ export default {
watch: {
feature: {
handler(val, oldVal) {
console.log(val, "1111--------");
},
deep: true,
immediate: true
......
<template>
<div id="pdf_6">
<div class="module-title" v-if="vshowG">
<div
style="font-size:36px;font-weight:bolder;margin-top:40px;text-align:center;margin-bottom:20px;"
>
签证
</div>
</div>
<div class="expense" v-if="feature.importantTip != '' && vshowG">
<div class="left">
<div style="font-size:28px;margin-bottom:20px;">
签字须知
</div>
</div>
<div class="right">
<div v-html="feature.visaRemark"></div>
</div>
</div>
<div class="module-title" v-if="vshowM">
<div
style="font-size:36px;font-weight:bolder;margin-top:40px;text-align:center;margin-bottom:20px;"
>
旅客信息
</div>
</div>
<table v-if='vshowM' class="Passenger-table" border="0" cellspacing="2" cellpadding="2">
<tbody>
<tr>
<td width="16.6%" class="thClass">姓名</td>
<td width="16.6%" class="thClass">英文姓名</td>
<td width="16.6%" class="thClass">性别</td>
<td width="16.6%" class="thClass">护照号</td>
<td width="16.6%" class="thClass">有效期</td>
<td width="16.6%" class="thClass">联系电话</td>
</tr>
<tr v-for="(item, i) in orderMsg.guestList" :key="i">
<td>{{item.name}}</td>
<td>{{item.eName}}</td>
<td>{{item.sex}}</td>
<td>{{item.passportNo}}</td>
<td>{{item.passportExpiry}}</td>
<td>{{item.mobilePhone}}</td>
</tr>
</tbody>
</table>
<div v-if='vshowJ' class="footer-div">
<img :src="domainManager().ViittoFileUrl+'/Upload/PictureMaterial/Web/TravelControlTripIcon20.png'" />
</div>
<div style="width: 100%;height:2px;"></div>
</div>
</template>
<script>
import Header from "./components/header";
export default {
components: {
Header
},
props: ["vshowG", "vshowM","vshowJ", "feature","orderMsg"],
data() {
return {};
},
methods: {},
computed: {},
watch: {
feature: {
handler(val, oldVal) {},
deep: true,
immediate: true
}
},
mounted() {}
};
</script>
<style></style>
......@@ -250,14 +250,14 @@
}
},
deep: true,
immediate: true
immediate: false
},
tripList: {
handler(val, oldVal) {
console.log(val,'1111--------')
},
deep: true,
immediate: true
immediate: false
},
},
mounted() {
......
......@@ -202,7 +202,6 @@
<div id="pdfNode" class="LeaveGroupDownload-form">
<div id="pdfDom" style="padding:0 20px;">
<!-- 首页 -->
<!--
<LeaveGroupDownload
:vshowJ="vshowJ"
:vshowL="vshowL"
......@@ -211,32 +210,40 @@
:orderTripdiff="orderTripdiff"
:vshowLLR="vshowLLR"
:vshowB="vshowB"
:lineId="lineId"></LeaveGroupDownload> -->
:lineId="lineId"></LeaveGroupDownload>
<!-- 行程特色 -->
<!-- <ItineraryFeatures :feature="feature"></ItineraryFeatures> -->
<ItineraryFeatures :feature="feature"></ItineraryFeatures>
<!-- 行程天数 -->
<!-- <travelDays
<travelDays
:dataAll="dataAll"
:orderMsg="orderMsg"
:orderTripdiff="orderTripdiff"
:tripList="tripList"
:vshowD="vshowD"
:vshowK="vshowK"
></travelDays> -->
></travelDays>
<!-- 团队费用说明 -->
<!-- <TourFareDescription
<TourFareDescription
:vshowE="vshowE"
:vshowF="vshowF"
:dataList="dataList"
:feature="feature"></TourFareDescription> -->
:feature="feature"></TourFareDescription>
<!-- 订单须知 -->
<OrderNotice
:vshowG="vshowG"
:feature="feature"></OrderNotice>
<!-- 签证信息 -->
<VisaInformation
:vshowG="vshowG"
:vshowM="vshowM"
:vshowJ="vshowJ"
:feature="feature"
:orderMsg="orderMsg"></VisaInformation>
</div>
</div>
......@@ -255,6 +262,7 @@
import travelDays from './LeaveGroupDownload/travelDays'
import TourFareDescription from './LeaveGroupDownload/TourFareDescription'
import OrderNotice from './LeaveGroupDownload/OrderNotice'
import VisaInformation from './LeaveGroupDownload/VisaInformation'
import {
setTimeout
} from 'timers';
......@@ -272,7 +280,8 @@
ItineraryFeatures,
travelDays,
TourFareDescription,
OrderNotice
OrderNotice,
VisaInformation
},
data() {
return {
......
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