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
e30d6c7e
Commit
e30d6c7e
authored
Jul 30, 2019
by
zhengke
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
e411c3f3
d90e2b2d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
12 deletions
+26
-12
RegistrationList.vue
src/components/TravelManager/TravelList/RegistrationList.vue
+1
-1
TravelPrice.vue
...nents/newTravelmanager/TravelGroupControl/TravelPrice.vue
+25
-11
No files found.
src/components/TravelManager/TravelList/RegistrationList.vue
View file @
e30d6c7e
...
...
@@ -1507,7 +1507,7 @@
</div>
<div
class=
"RL_rightNameList"
>
<div
v-if=
"ConfigData.Leader.LeaderId>0&&ConfigData.Leader.LeaderName!=''"
>
{{ConfigData.Leader.LeaderName}}/领队
{{ConfigData.Leader.LeaderName}}/
{{ConfigData.Leader.LeaderGuidClassStr}}
领队
</div>
<div
v-if=
"ConfigData.Leader.GuideId>0&&ConfigData.Leader.GuideName!=''"
>
{{ConfigData.Leader.GuideName}}/导游
...
...
src/components/newTravelmanager/TravelGroupControl/TravelPrice.vue
View file @
e30d6c7e
...
...
@@ -185,11 +185,13 @@
max-height
:
400px
;
overflow
:
auto
;
}
._TravelPricePopover
.ScenicDiv
{
._TravelPricePopover
.ScenicDiv
{
width
:
450px
;
max-height
:
400px
;
overflow
:
auto
;
}
._TravelPricePopover
table
{
padding
:
10px
0
0
20px
;
background-color
:
#ededed
;
...
...
@@ -775,7 +777,7 @@
<el-form-item
style=
"margin-top:1px;"
>
<span
class=
"TP_Sendprepend"
style=
"margin:3px -1px 0 0"
>
销售公司
</span>
<el-select
class=
"w350 multiple_input"
:class=
"{'SaleBranchList':priceData.SaleBranchIdArray==''}"
v-model=
"priceData.SaleBranchIdArray"
multiple
>
v-model=
"priceData.SaleBranchIdArray"
multiple
@
change=
"ChangeSaleBranch(priceData)"
>
<el-option
v-for=
"item in companyList"
:key=
"item.id"
:label=
"item.bName"
:value=
"item.id"
>
</el-option>
</el-select>
...
...
@@ -1009,7 +1011,7 @@
selectFilghtList
:
[],
FinfoList
:
[],
//选中景点
ScenicList
:[],
ScenicList
:
[],
//下拉框默认值
SelectDefaultValue
:
0
,
SelectOtherDefault
:
-
1
,
...
...
@@ -1067,6 +1069,17 @@
};
},
methods
:
{
//销售公司改变方法
ChangeSaleBranch
(
item
)
{
var
str
=
""
;
if
(
item
.
SaleBranchIdArray
&&
item
.
SaleBranchIdArray
.
length
>
0
)
{
item
.
SaleBranchIdArray
.
forEach
(
subItem
=>
{
str
+=
subItem
+
","
;
});
str
=
str
.
substring
(
0
,
str
.
lastIndexOf
(
','
));
}
item
.
SaleBranchId
=
str
;
},
//调用子组件方法
GetHotelUsePriceList
(
HotelId
,
UseDay
,
index
,
hotelSubIndex
)
{
let
str
=
`comPriceHotelInfo
${
index
}${
hotelSubIndex
}
`
;
...
...
@@ -1180,7 +1193,7 @@
//销售清位时间
SaleClearOrderHour
:
0
,
//可退景点下拉列表
ScenicBackList
:[],
ScenicBackList
:
[],
};
}
this
.
returnPriceList
.
push
(
objItem
);
...
...
@@ -1574,15 +1587,15 @@
});
},
//选中景点选择框
getScenic
(
item
){
item
.
IsChecked
=
!
item
.
IsChecked
;
getScenic
(
item
)
{
item
.
IsChecked
=
!
item
.
IsChecked
;
this
.
initScenic
();
},
//初始化景点
initScenic
(){
this
.
ScenicList
=
[];
this
.
priceData
.
ScenicBackList
.
forEach
(
x
=>
{
if
(
x
.
IsChecked
)
{
initScenic
()
{
this
.
ScenicList
=
[];
this
.
priceData
.
ScenicBackList
.
forEach
(
x
=>
{
if
(
x
.
IsChecked
)
{
this
.
ScenicList
.
push
(
x
);
}
})
...
...
@@ -1816,4 +1829,5 @@
commonPHInfo
:
commonPHlInfo
}
};
</
script
>
\ No newline at end of file
</
script
>
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