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
54a2010a
Commit
54a2010a
authored
4 months ago
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
当地游新增,取消发团显示
parent
6288fff3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
8 deletions
+40
-8
TravelControlList.vue
...components/TravelManager/TravelList/TravelControlList.vue
+1
-1
oneDayTrip.vue
src/components/TravelManager/TravelList/oneDayTrip.vue
+39
-7
No files found.
src/components/TravelManager/TravelList/TravelControlList.vue
View file @
54a2010a
...
...
@@ -3544,7 +3544,7 @@
this
.
offerQMsg
.
QStartDate
=
nowDate
;
this
.
offerDataList
=
[];
},
//
保存报价单
//
修改是否发团
setIsSetOutOffer
(
item
,
IsSetOut
)
{
var
updateMsg
=
{
TCID
:
item
.
TCID
,
...
...
This diff is collapsed.
Click to expand it.
src/components/TravelManager/TravelList/oneDayTrip.vue
View file @
54a2010a
...
...
@@ -81,6 +81,7 @@
.TC_Content
.avatar-uploader-icon
{
height
:
auto
;
}
</
style
>
<
template
>
<div
class=
"TC_Content"
>
...
...
@@ -140,11 +141,11 @@
</span>
</li>
<li>
<span>
<em>
{{
$t
(
'Operation.Op_TeamName'
)
}}
</em>
<el-input
v-model=
"queryMsg.Title"
class=
"w150"
clearable
></el-input>
</span>
</li>
<span>
<em>
{{
$t
(
'Operation.Op_TeamName'
)
}}
</em>
<el-input
v-model=
"queryMsg.Title"
class=
"w150"
clearable
></el-input>
</span>
</li>
<li>
<span>
<em>
{{
$t
(
'scen.sc_ftTime'
)
}}
</em>
...
...
@@ -491,6 +492,12 @@
<span>
{{$t('scen.sc_cp')}}
</span>
{{item.OutBranchName}}
</p>
<p
class=
"travelnowrap"
v-if=
"item.IsSetOut == 0"
>
<span
style=
"color: blue"
>
{{ $t("objFill.zhengchangft") }}
</span>
</p>
<p
class=
"travelnowrap"
v-if=
"item.IsSetOut == 1"
>
<span
style=
"color: red"
>
{{ $t("objFill.quxiaofatuan") }}
</span>
</p>
<p
class=
"travelnowrap"
v-if=
"item.WordPath!=''"
>
<a
style=
"corsor:pointer;"
:href=
"domainManager().ViittoFileUrl+item.WordPath"
>
{{$t('visa.v_salecompany')}}{{$t('Operation.Op_downLoadword')}}
</a>
...
...
@@ -846,6 +853,16 @@
</el-dropdown-item>
<el-dropdown-item
@
click
.
native=
'ShowUploadWord(item)'
>
{{$t('Operation.Op_wordTrip')}}
</el-dropdown-item>
<el-dropdown-item
v-if=
"item.IsSetOut == 0"
>
<div
@
click=
"setIsSetOutOffer(item, 1)"
>
{{ $t("objFill.quxiaofatuan") }}
</div>
</el-dropdown-item>
<el-dropdown-item
v-if=
"item.IsSetOut == 1"
>
<div
@
click=
"setIsSetOutOffer(item, 0)"
>
{{ $t("objFill.zhengchangft") }}
</div>
</el-dropdown-item>
<el-dropdown-item>
<div
@
click=
'GoToleaderReimbursement(item)'
style=
"color:red"
>
{{$t('objFill.dijiecbzc')}}
</div>
</el-dropdown-item>
...
...
@@ -1178,7 +1195,7 @@
TeamType
:
2
,
//一日游的团
IsShowUnion
:
-
1
,
TCID
:
''
,
Title
:
""
,
//团名
Title
:
""
,
//团名
},
remarkMsg
:
{
TCID
:
0
,
...
...
@@ -1306,6 +1323,20 @@
}
});
},
setIsSetOutOffer
(
item
,
IsSetOut
)
{
var
updateMsg
=
{
TCID
:
item
.
TCID
,
IsSetOut
:
IsSetOut
,
};
this
.
apipost
(
"travel_post_SetIsSetOutService"
,
updateMsg
,
(
res
)
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
Success
(
res
.
data
.
message
);
this
.
getControlList
();
}
else
{
this
.
Info
(
res
.
data
.
message
);
}
});
},
//跳转到用款计划
GoToleaderReimbursement
(
item
)
{
var
newCombinationNumStr
=
item
.
CombinationNum
;
...
...
@@ -2350,4 +2381,5 @@
this
.
getControlList
()
}
}
</
script
>
\ No newline at end of file
</
script
>
This diff is collapsed.
Click to expand it.
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