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
ed392837
Commit
ed392837
authored
Nov 23, 2023
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
82765151
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
3 deletions
+27
-3
groupTourOrder.vue
src/components/SalesModule/groupTourOrder.vue
+14
-2
groupTourOrderByTuan.vue
src/components/SalesModule/groupTourOrderByTuan.vue
+13
-1
No files found.
src/components/SalesModule/groupTourOrder.vue
View file @
ed392837
...
...
@@ -2144,7 +2144,7 @@
<span
style=
"color:#f56c6c"
>
{{childItem.ticketOutTypeStr}}
</span>
<span
v-if=
"childItem.isApplyPhoto == 1"
style=
"color: red"
>
({{ $t("salesModule.Zhao") }})
</span>
<span
style=
"cursor:pointer;"
@
click=
"goProtocol(item,childItem)"
>
{{childItem.protocolId>0?"查看保密协议":"签订保密协议"}}
</span>
<span
style=
"cursor:pointer;"
@
click=
"goDisclaimer(item,childItem)"
>
{{childItem.disclaimerId>0?"查看参团免责承诺函":"签订参团免责承诺函"}}
</span>
<span
v-if=
"isShow===index||childItem.disclaimerId>0"
style=
"cursor:pointer;"
@
click=
"goDisclaimer(item,childItem)"
>
{{childItem.disclaimerId>0?"查看参团免责承诺函":"签订参团免责承诺函"}}
</span>
</span>
<span
v-if=
"item.photoNum > 0"
>
({{ $t("salesModule.NoPhoto") }} {{ item.photoNum
...
...
@@ -2175,10 +2175,14 @@
"
v-for=
"(id, i) in item.tipFrId"
:key=
"i"
>
{{ id }}
</span>
</span>
</div>
<div
class=
"order-show GO_Contract"
v-if=
"item.isShowDisclaimer==1"
@
click=
"showMore(item,index)"
>
<span>
{{isShow===index ? "隐藏参团免责承诺函" : "显示参团免责承诺函"}}
</span>
</div>
<div
v-if=
"item.otherContractList&&(qjGroupId == userInfo.RB_Group_id || F_ContractManagement)"
>
<span
class=
"GO_Contract"
@
click=
"goSingleContract(item)"
>
{{item.otherContractList.length==0?"单项合同":"查看单项合同"}}
</span>
</div>
<div
v-if=
"
...
...
@@ -2473,6 +2477,7 @@
export
default
{
data
()
{
return
{
isShow
:
''
,
pagesTitle
:
'跟团游订单'
,
SpecialAppShow
:
false
,
SpecialAppMsg
:
{
...
...
@@ -2813,6 +2818,13 @@
},
},
methods
:
{
showMore
(
item
,
index
){
if
(
this
.
isShow
===
index
){
this
.
isShow
=
''
}
else
{
this
.
isShow
=
index
;
}
},
//关闭弹窗
closeDialog
()
{
this
.
isShowLayerRemarks
=
false
;
...
...
src/components/SalesModule/groupTourOrderByTuan.vue
View file @
ed392837
...
...
@@ -2342,7 +2342,7 @@
<span
style=
"color:#f56c6c"
>
{{childItem.ticketOutTypeStr}}
</span>
<span
style=
"cursor:pointer;"
@
click=
"goProtocol(item,childItem)"
>
{{childItem.protocolId>0?"查看保密协议":"签订保密协议"}}
</span>
<span
style=
"cursor:pointer;"
@
click=
"goDisclaimer(item,childItem)"
>
{{childItem.disclaimerId>0?"查看参团免责承诺函":"签订参团免责承诺函"}}
</span>
<span
v-if=
"item.isShowDisclaimer==1&&( isShow===index||childItem.disclaimerId>0)"
style=
"cursor:pointer;"
@
click=
"goDisclaimer(item,childItem)"
>
{{childItem.disclaimerId>0?"查看参团免责承诺函":"签订参团免责承诺函"}}
</span>
<span
v-if=
"childItem.isApplyPhoto == 1"
style=
"color: red"
>
(照)
</span>
</span>
<span
v-if=
"item.photoNum > 0"
>
(照片一人 {{ item.photoNum }}份)
</span>
</span>
...
...
@@ -2378,6 +2378,10 @@
"
style=
"color: #f56c6c; margin-left: 20px; cursor: pointer"
>
退景点
</span>
</el-popover>
</span>
<div
class=
"order-show GO_Contract"
v-if=
"item.isShowDisclaimer==1"
@
click=
"showMore(item,index)"
>
<span>
{{isShow===index ? "隐藏参团免责承诺函" : "显示参团免责承诺函"}}
</span>
</div>
<div>
<span
v-if=
"item.opTipMoney == '' && item.tipMoney != ''"
style=
"color: red"
>
(小费:{{ item.tipMoney }})
</span>
...
...
@@ -3228,6 +3232,7 @@
export
default
{
data
()
{
return
{
isShow
:
""
,
timer
:
false
,
fullHeight
:
document
.
documentElement
.
clientHeight
,
ScreenHeight
:
0
,
...
...
@@ -3653,6 +3658,13 @@
},
},
methods
:
{
showMore
(
item
,
index
){
if
(
this
.
isShow
===
index
){
this
.
isShow
=
''
}
else
{
this
.
isShow
=
index
;
}
},
//跳转到保密协议
goProtocol
(
item
,
sItem
)
{
let
ProtocolId
=
0
;
...
...
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