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
eb23c926
Commit
eb23c926
authored
Sep 13, 2024
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
77f6c1a1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
69 additions
and
1 deletion
+69
-1
TravelControlList.vue
...components/TravelManager/TravelList/TravelControlList.vue
+69
-1
No files found.
src/components/TravelManager/TravelList/TravelControlList.vue
View file @
eb23c926
...
@@ -1228,6 +1228,9 @@
...
@@ -1228,6 +1228,9 @@
</el-dropdown-item>
</el-dropdown-item>
<el-dropdown-item
@
click
.
native=
'ckOPInfo(item)'
>
签证OP设置
<el-dropdown-item
@
click
.
native=
'ckOPInfo(item)'
>
签证OP设置
</el-dropdown-item>
</el-dropdown-item>
<el-dropdown-item
@
click
.
native=
'CopyTripAndFeature(item)'
>
复制行程
</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown-menu>
</el-dropdown>
</el-dropdown>
</div>
</div>
...
@@ -1404,7 +1407,29 @@
...
@@ -1404,7 +1407,29 @@
</div>
</div>
</div>
</div>
<!--复制行程信息-->
<div
class=
"combottomDiv OPremarkDiv"
style=
"height:150px;"
v-show=
"CopyTripAndFeatureMsg.VisaShow"
>
<div
class=
"combottomTitle"
>
复制行程
</div>
<el-form
label-width=
"100px"
>
<el-col
:span=
"4"
>
<el-form-item
label=
"团号"
prop=
"Remark"
>
<el-input
v-model=
"CopyTripAndFeatureMsg.CopyTCNUM"
placeholder=
"请输入团号"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
""
prop=
"Remark"
>
<el-checkbox-group
v-model=
"CopyTripAndFeatureMsg.CopyTrip"
>
<el-checkbox
label=
"1"
value=
"1"
>
行程
</el-checkbox>
<el-checkbox
label=
"2"
value=
"2"
>
特色
</el-checkbox>
</el-checkbox-group>
</el-form-item>
</el-col>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<button
class=
"hollowFixedBtn"
@
click=
"CopyTripAndFeatureMsg.VisaShow = false"
>
{{$t('pub.cancelBtn')}}
</button>
<button
class=
"normalBtn"
type=
"primary"
@
click=
"SetCopyTripAndFeature"
>
{{$t('pub.sureBtn')}}
</button>
</div>
</div>
<div
v-if=
"dialog.show"
>
<div
v-if=
"dialog.show"
>
<el-dialog
:visible
.
sync=
"dialog.show"
width=
"1400px"
title=
"报价详情"
>
<el-dialog
:visible
.
sync=
"dialog.show"
width=
"1400px"
title=
"报价详情"
>
<price-dialog
:ConfigId=
"dialog.ConfigId"
:OfferId=
"dialog.OfferId"
ref=
"dialog"
></price-dialog>
<price-dialog
:ConfigId=
"dialog.ConfigId"
:OfferId=
"dialog.OfferId"
ref=
"dialog"
></price-dialog>
...
@@ -1611,6 +1636,14 @@
...
@@ -1611,6 +1636,14 @@
VisaAssistIds
:
[],
VisaAssistIds
:
[],
VisaAssistId
:
""
,
VisaAssistId
:
""
,
},
},
CopyTripAndFeatureMsg
:
{
//CopyTripAndFeature
VisaShow
:
false
,
TCID
:
0
,
CopyTCNUM
:
""
,
CopyTrip
:
[],
copyType
:
""
,
},
flightStatus
:
[{
flightStatus
:
[{
Id
:
0
,
Id
:
0
,
Name
:
"不限"
,
Name
:
"不限"
,
...
@@ -2694,6 +2727,41 @@
...
@@ -2694,6 +2727,41 @@
err
=>
{}
err
=>
{}
);
);
},
},
//弹窗选择复制的团期信息
CopyTripAndFeature
(
item
)
{
this
.
CopyTripAndFeatureMsg
.
VisaShow
=
true
;
this
.
CopyTripAndFeatureMsg
.
CopyTrip
=
[];
this
.
CopyTripAndFeatureMsg
.
copyType
=
''
;
this
.
CopyTripAndFeatureMsg
.
TCID
=
item
.
TCID
;
this
.
CopyTripAndFeatureMsg
.
CopyTCNUM
=
""
;
this
.
getVisaEmployeeList
();
},
//保存复制的行程信息
SetCopyTripAndFeature
()
{
this
.
CopyTripAndFeatureMsg
.
copyType
=
''
;
if
(
this
.
CopyTripAndFeatureMsg
.
CopyTrip
&&
this
.
CopyTripAndFeatureMsg
.
CopyTrip
.
length
>
0
)
{
this
.
CopyTripAndFeatureMsg
.
copyType
=
this
.
CopyTripAndFeatureMsg
.
CopyTrip
.
join
(
','
)
}
this
.
apipost
(
"travel_post_CopyTripAndFeature"
,
this
.
CopyTripAndFeatureMsg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
Success
(
"复制行程成功"
);
this
.
CopyTripAndFeatureMsg
.
VisaShow
=
false
;
this
.
CopyTripAndFeatureMsg
.
CopyTrip
=
[];
this
.
CopyTripAndFeatureMsg
.
copyType
=
''
;
this
.
CopyTripAndFeatureMsg
.
TCID
=
0
;
this
.
CopyTripAndFeatureMsg
.
CopyTCNUM
=
""
;
this
.
getControlList
();
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
},
err
=>
{}
);
},
//签证op设置
//签证op设置
ckOPInfo
(
item
)
{
ckOPInfo
(
item
)
{
this
.
VisaOPMsg
.
VisaShow
=
true
;
this
.
VisaOPMsg
.
VisaShow
=
true
;
...
...
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