Commit 81ca5b3b authored by youjie's avatar youjie

no message

parent d2e18dce
...@@ -38,12 +38,7 @@ export default { ...@@ -38,12 +38,7 @@ export default {
props: ["vshowG","feature",], props: ["vshowG","feature",],
data() { data() {
return { return {
title:
"北京-马德里-塞戈维亚-萨拉曼卡-贝尼多姆/小镇-瓦伦西亚-巴塞罗那(约 253km,约 3h)北京-马德里-塞戈维亚-萨拉曼卡-贝尼多姆/小镇-瓦伦西亚-巴塞罗那(约 253km,约 3h)",
day: "DAY",
backgroundColor: "",
textColor: "",
textColorOne: ""
}; };
}, },
...@@ -52,7 +47,7 @@ export default { ...@@ -52,7 +47,7 @@ export default {
watch: { watch: {
feature: { feature: {
handler(val, oldVal) { handler(val, oldVal) {
console.log(val, "1111--------");
}, },
deep: true, deep: true,
immediate: 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 @@ ...@@ -250,14 +250,14 @@
} }
}, },
deep: true, deep: true,
immediate: true immediate: false
}, },
tripList: { tripList: {
handler(val, oldVal) { handler(val, oldVal) {
console.log(val,'1111--------') console.log(val,'1111--------')
}, },
deep: true, deep: true,
immediate: true immediate: false
}, },
}, },
mounted() { mounted() {
......
...@@ -202,7 +202,6 @@ ...@@ -202,7 +202,6 @@
<div id="pdfNode" class="LeaveGroupDownload-form"> <div id="pdfNode" class="LeaveGroupDownload-form">
<div id="pdfDom" style="padding:0 20px;"> <div id="pdfDom" style="padding:0 20px;">
<!-- 首页 --> <!-- 首页 -->
<!--
<LeaveGroupDownload <LeaveGroupDownload
:vshowJ="vshowJ" :vshowJ="vshowJ"
:vshowL="vshowL" :vshowL="vshowL"
...@@ -211,32 +210,40 @@ ...@@ -211,32 +210,40 @@
:orderTripdiff="orderTripdiff" :orderTripdiff="orderTripdiff"
:vshowLLR="vshowLLR" :vshowLLR="vshowLLR"
:vshowB="vshowB" :vshowB="vshowB"
:lineId="lineId"></LeaveGroupDownload> --> :lineId="lineId"></LeaveGroupDownload>
<!-- 行程特色 --> <!-- 行程特色 -->
<!-- <ItineraryFeatures :feature="feature"></ItineraryFeatures> --> <ItineraryFeatures :feature="feature"></ItineraryFeatures>
<!-- 行程天数 --> <!-- 行程天数 -->
<!-- <travelDays <travelDays
:dataAll="dataAll" :dataAll="dataAll"
:orderMsg="orderMsg" :orderMsg="orderMsg"
:orderTripdiff="orderTripdiff" :orderTripdiff="orderTripdiff"
:tripList="tripList" :tripList="tripList"
:vshowD="vshowD" :vshowD="vshowD"
:vshowK="vshowK" :vshowK="vshowK"
></travelDays> --> ></travelDays>
<!-- 团队费用说明 --> <!-- 团队费用说明 -->
<!-- <TourFareDescription <TourFareDescription
:vshowE="vshowE" :vshowE="vshowE"
:vshowF="vshowF" :vshowF="vshowF"
:dataList="dataList" :dataList="dataList"
:feature="feature"></TourFareDescription> --> :feature="feature"></TourFareDescription>
<!-- 订单须知 --> <!-- 订单须知 -->
<OrderNotice <OrderNotice
:vshowG="vshowG" :vshowG="vshowG"
:feature="feature"></OrderNotice> :feature="feature"></OrderNotice>
<!-- 签证信息 -->
<VisaInformation
:vshowG="vshowG"
:vshowM="vshowM"
:vshowJ="vshowJ"
:feature="feature"
:orderMsg="orderMsg"></VisaInformation>
</div> </div>
</div> </div>
...@@ -255,6 +262,7 @@ ...@@ -255,6 +262,7 @@
import travelDays from './LeaveGroupDownload/travelDays' import travelDays from './LeaveGroupDownload/travelDays'
import TourFareDescription from './LeaveGroupDownload/TourFareDescription' import TourFareDescription from './LeaveGroupDownload/TourFareDescription'
import OrderNotice from './LeaveGroupDownload/OrderNotice' import OrderNotice from './LeaveGroupDownload/OrderNotice'
import VisaInformation from './LeaveGroupDownload/VisaInformation'
import { import {
setTimeout setTimeout
} from 'timers'; } from 'timers';
...@@ -272,7 +280,8 @@ ...@@ -272,7 +280,8 @@
ItineraryFeatures, ItineraryFeatures,
travelDays, travelDays,
TourFareDescription, TourFareDescription,
OrderNotice OrderNotice,
VisaInformation
}, },
data() { data() {
return { 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