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
53912d91
Commit
53912d91
authored
Sep 27, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
223316dc
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
3 deletions
+35
-3
TravelControlList.vue
...components/TravelManager/TravelList/TravelControlList.vue
+35
-3
No files found.
src/components/TravelManager/TravelList/TravelControlList.vue
View file @
53912d91
...
...
@@ -104,9 +104,11 @@
display
:
inline-block
;
border-radius
:
5px
;
}
.comSearchDiv
.el-checkbox
{
margin-right
:
0
;
.comSearchDiv
.el-checkbox
{
margin-right
:
0
;
}
</
style
>
<
template
>
<div
class=
"TC_Content"
>
...
...
@@ -255,9 +257,16 @@
:value=
"item.id"
></el-option>
</el-select>
</div>
<div>
<span>
团队类型
</span>
<el-select
class=
"w180 multiple_input"
:class=
"
{'SaleBranchList':queryMsg.PriceTeamType==''}"
v-model="queryMsg.PriceTeamType" clearable>
<el-option
v-for=
"item in TeamListArr"
:key=
"item.Id"
:label=
"item.Name"
:value=
"item.Id"
>
</el-option>
</el-select>
</div>
</div>
</div>
<div
class=
"comSearchDiv"
>
<span>
{{
$t
(
'scen.sc_temStatu'
)
}}
</span>
<span>
...
...
@@ -538,6 +547,13 @@
<span>
{{$t('Airticket.Air_StartTime')}}
</span>
<span
class=
"go_date"
>
{{item.StartDate}}
</span>
</p>
<p
class=
"travelnowrap"
v-if=
"item.PriceOfferUrl"
>
<span>
报价单
</span>
<span
class=
"go_date"
>
<a
style=
"margin-left:20px;color:blue;"
:href=
"item.PriceOfferUrl"
v-if=
"item.PriceOfferUrl"
target=
"_blank"
>
下载报价单
</a>
</span>
</p>
<p
class=
"travelnowrap"
>
<span>
{{$t('Operation.Op_teamNotice')}}
</span>
{{item.OutNotice==1?'OK':'暂定'}}
...
...
@@ -1259,7 +1275,9 @@
HotelId
:
0
,
//酒店编号
HotelUseTime
:
""
,
//酒店使用时间
QBusNumber
:
""
,
PriceTeamType
:
""
,
//团队类型
},
TeamListArr
:
[],
//团队类型
//报价单查询条件
offerQMsg
:
{
CreateBy
:
0
,
//报价单创建人
...
...
@@ -1375,6 +1393,19 @@
},
},
methods
:
{
//获取团队类型
getTeamList
()
{
this
.
apipost
(
"travel_get_GetTravelPriceTeamTypeList"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
TeamListArr
=
res
.
data
.
data
;
console
.
log
(
"this.TeamListArr"
,
this
.
TeamListArr
);
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
},
err
=>
{}
);
},
//获取TCID
clickAirticket
(
item
)
{
this
.
updateAirticketObj
.
TCID
=
item
.
TCID
;
...
...
@@ -2502,6 +2533,7 @@
if
(
routeName
==
'TravelControlList2'
)
{
this
.
queryMsg
.
TeamType
=
3
;
}
this
.
getTeamList
();
this
.
getControlList
();
}
};
...
...
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