Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
SuperMan
Commits
81ca5b3b
Commit
81ca5b3b
authored
Aug 30, 2023
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
d2e18dce
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
99 additions
and
17 deletions
+99
-17
OrderNotice.vue
src/components/LeaveGroupDownload/OrderNotice.vue
+2
-7
VisaInformation.vue
src/components/LeaveGroupDownload/VisaInformation.vue
+78
-0
travelDays.vue
src/components/LeaveGroupDownload/travelDays.vue
+2
-2
confirmationOrderDownLoadNew.vue
src/components/confirmationOrderDownLoadNew.vue
+17
-8
No files found.
src/components/LeaveGroupDownload/OrderNotice.vue
View file @
81ca5b3b
...
...
@@ -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
...
...
src/components/LeaveGroupDownload/VisaInformation.vue
0 → 100644
View file @
81ca5b3b
<
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
>
src/components/LeaveGroupDownload/travelDays.vue
View file @
81ca5b3b
...
...
@@ -250,14 +250,14 @@
}
},
deep
:
true
,
immediate
:
tru
e
immediate
:
fals
e
},
tripList
:
{
handler
(
val
,
oldVal
)
{
console
.
log
(
val
,
'1111--------'
)
},
deep
:
true
,
immediate
:
tru
e
immediate
:
fals
e
},
},
mounted
()
{
...
...
src/components/confirmationOrderDownLoadNew.vue
View file @
81ca5b3b
...
...
@@ -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
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment