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
f4e665ad
Commit
f4e665ad
authored
Sep 10, 2019
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改合同
parent
555c5f28
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
217 additions
and
115 deletions
+217
-115
TravelContractDetail.vue
src/components/TravelContractDetail.vue
+32
-12
TravelContractNew.vue
src/components/TravelContractNew.vue
+184
-102
ElectronicAudit.vue
src/components/administrative/ElectronicAudit.vue
+1
-1
No files found.
src/components/TravelContractDetail.vue
View file @
f4e665ad
...
...
@@ -285,6 +285,22 @@
.TD_MainContent
.Ec_cha
:hover
{
color
:
red
;
}
.TD_MainContent
.TcTravel_Table
td
{
border
:
1px
solid
rgb
(
0
,
0
,
0
);
word-break
:
break-all
;
padding
:
5px
;
line-height
:
2
;
}
.TD_MainContent
.TcTravel_Table
{
width
:
100%
;
border
:
none
;
border-collapse
:
collapse
;
border-spacing
:
0
;
}
.TD_MainContent
.TC_LASTTD
div
{
margin-bottom
:
10px
;
}
</
style
>
<
template
>
...
...
@@ -514,10 +530,11 @@
<p>
旅游费用支付时间:
<span>
{{
getDate
(
dataList
.
payDate
)
}}
</span>
。
</p>
<h3>
第二十二条 人身意外伤害保险
</h3>
<p>
1.出境社提示旅游者购买人身意外伤害保险;
</p>
<p>
2.旅游者可以做以下选择:
</p>
<p>
旅游者
<span>
{{
dataList
.
insuranceOpinion
==
1
?
'同意'
:
'不同意'
}}
</span>
(同意或者不同意,打勾无效)委托出境社办理人身意外伤害保险,保险公司名称
<span></span>
(投保的相关信息以实际保单为准);
<p>
2.旅游者
<span
v-if=
"dataList.insuranceOpinion==1"
>
委托出境社购买
</span>
<span
v-if=
"dataList.insuranceOpinion==2"
>
自行购买
</span>
<span
v-if=
"dataList.insuranceOpinion==3"
>
放弃购买
</span>
人身意外伤害保险
<span
v-if=
"dataList.insuranceOpinion==1"
>
{{
dataList
.
insuranceProduct
}}
,保险产品名称(投保的相关信息以实际保单为准);
</span>
</p>
<h3>
第二十三条 成团人数与不成团的约定
</h3>
<p>
成团的最低人数:
<span>
{{
dataList
.
minNumber
}}
</span>
人。
</p>
...
...
@@ -691,7 +708,10 @@
</tbody>
</table>
<br>
<table
class=
"TDteam_Table"
>
<div
v-html=
"dataList.travelContent"
>
</div>
<!--
<table
class=
"TDteam_Table"
>
<tbody>
<tr>
<td
colspan=
"5"
>
...
...
@@ -731,7 +751,7 @@
</div>
</td>
<td>
{{
item
.
TrifficType
}}
<span>
{{
item
.
TrifficType
}}
</span>
</td>
<td>
<span
v-if=
"index!=tripList.length-1"
>
旅游酒店
</span>
...
...
@@ -741,7 +761,7 @@
</td>
</tr>
</tbody>
</table>
</table>
-->
</div>
<!-- 自愿购物 -->
<div
class=
"shoppings"
:class=
"
{'checkedNav':cked==6}">
...
...
@@ -1365,11 +1385,11 @@
this
.
trifficList
.
forEach
((
x
,
index
)
=>
{
if
(
x
.
airportPickUp
==
1
||
x
.
airportPickUp
==
2
){
if
(
x
.
isUseBus
==
1
){
this
.
tripList
[
index
].
TrifficType
=
'飞机+
车
'
this
.
tripList
[
index
].
TrifficType
=
'飞机+
大巴
'
}
}
if
(
x
.
airportPickUp
==
0
&&
x
.
isUseBus
==
1
){
this
.
tripList
[
index
].
TrifficType
=
'
车
'
if
(
x
.
airportPickUp
==
0
&&
x
.
isUseBus
==
1
){
this
.
tripList
[
index
].
TrifficType
=
'
大巴
'
}
if
(
x
.
airportPickUp
==
1
||
x
.
airportPickUp
==
2
){
if
(
x
.
isUseBus
==
0
){
...
...
@@ -1378,11 +1398,11 @@
}
if
(
x
.
airportPickUp
==
0
||
x
.
airportPickUp
==
0
){
if
(
x
.
isUseBus
==
0
){
this
.
tripList
[
index
].
TrifficType
=
''
this
.
tripList
[
index
].
TrifficType
=
'
无
'
}
}
})
}
,
}
},
mounted
()
{
this
.
msg
.
TCID
=
this
.
$route
.
query
.
TCID
;
...
...
src/components/TravelContractNew.vue
View file @
f4e665ad
This diff is collapsed.
Click to expand it.
src/components/administrative/ElectronicAudit.vue
View file @
f4e665ad
...
...
@@ -43,7 +43,7 @@
</el-select>
</span>
</li>
<li>
<li
style=
"display:none;"
>
<span>
<em>
日期
</em>
<el-date-picker
v-model=
'msg.startDate'
class=
'w135'
value-format=
"yyyy-MM-dd"
type=
"date"
...
...
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