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
bf3cfb10
Commit
bf3cfb10
authored
Aug 28, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
d96cb3cf
8e692580
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
439 additions
and
392 deletions
+439
-392
bookDinnerStatisticsDetails.vue
src/components/Restaurant/bookDinnerStatisticsDetails.vue
+6
-3
groupTourOrder.vue
src/components/SalesModule/groupTourOrder.vue
+2
-3
TravelPassengerList2.vue
...ponents/TravelManager/TravelList/TravelPassengerList2.vue
+174
-343
TravelpassengerList.vue
...mponents/TravelManager/TravelList/TravelpassengerList.vue
+251
-38
comCheckDinner.vue
src/components/commonPage/comCheckDinner.vue
+2
-1
config.js
src/router/config.js
+4
-4
No files found.
src/components/Restaurant/bookDinnerStatisticsDetails.vue
View file @
bf3cfb10
...
...
@@ -53,8 +53,10 @@
<tr>
<td
colspan=
"2"
>
<span
style=
"padding-left:5px;"
class=
"link"
@
click=
"goUrlR('restaurantList',subItem.DiningID,'餐厅列表')"
>
{{
subItem
.
DiningName
}}
</span>
@
click=
"goUrlR('restaurantList',subItem.DiningID,'餐厅列表')"
>
{{
subItem
.
DiningName
}}
<br/>
真实名称:
{{
subItem
.
DiningRealName
}}
</span>
</td>
</tr>
<tr>
...
...
@@ -82,7 +84,7 @@
<el-option
v-for=
'itemHotel in item.DinnerList'
:label=
'itemHotel.RealName'
:value=
'itemHotel.ID'
:key=
'itemHotel.ID'
></el-option>
</el-select>
<span
style=
"color:green"
>
{{
subItem
.
NewDiningName
}}
</span><br/>
<span
style=
"color:green"
>
{{
subItem
.
NewDining
Real
Name
}}
</span><br/>
<el-popover
placement=
"right"
width=
"540"
trigger=
"click"
v-model=
"subItem.isShowPop"
>
<comCheckDinner
:ref=
"'comCheckDinner'+index+subIndex+''"
:UseDate=
"item.UseTimeStr"
v-on:childDinner=
"childDinnerList"
>
...
...
@@ -261,6 +263,7 @@
oldData
.
PayStyleExt
=
obj
.
PayStyle
;
oldData
.
NewDiningID
=
obj
.
ID
;
oldData
.
NewDiningName
=
obj
.
Name
;
oldData
.
NewDiningRealName
=
obj
.
RealName
;
this
.
list
.
forEach
(
x
=>
{
x
.
DiningSummaryList
.
forEach
(
y
=>
{
y
.
isShowPop
=
false
;
...
...
src/components/SalesModule/groupTourOrder.vue
View file @
bf3cfb10
...
...
@@ -1390,7 +1390,7 @@
</td>
<td
width=
"70"
>
报名类型
</td>
<td>
<el-select
v-model=
'msg.GroupType
'
filterab
le
:placeholder=
"$t('pub.pleaseSel')"
>
<el-select
v-model=
'msg.GroupType
Array'
filterable
multip
le
:placeholder=
"$t('pub.pleaseSel')"
>
<el-option
label=
"不限"
value=
'-1'
></el-option>
<el-option
v-for=
"item in ctlxList"
:label=
'item.Name'
:value=
'item.Id'
:key=
'item.Id'
>
</el-option>
...
...
@@ -2189,6 +2189,7 @@
ContactName
:
''
,
CustomerId
:
'-1'
,
GroupType
:
'-1'
,
GroupTypeArray
:[],
OrderSource
:
'-1'
,
CStartDate
:
''
,
CEndDate
:
''
,
...
...
@@ -3927,12 +3928,10 @@
'sellorder_post_GetTravelOrderList'
,
this
.
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
loading
=
false
this
.
total
=
res
.
data
.
data
.
count
this
.
list
=
res
.
data
.
data
.
pageData
;
console
.
log
(
this
.
list
,
'list'
);
}
else
{
this
.
$message
.
error
(
res
.
data
.
message
)
}
...
...
src/components/TravelManager/TravelList/TravelPassengerList2.vue
View file @
bf3cfb10
This diff is collapsed.
Click to expand it.
src/components/TravelManager/TravelList/TravelpassengerList.vue
View file @
bf3cfb10
This diff is collapsed.
Click to expand it.
src/components/commonPage/comCheckDinner.vue
View file @
bf3cfb10
...
...
@@ -74,7 +74,7 @@
<div
class=
"clearfix comCheckDinner"
>
<div
class=
"comCk_list"
v-for=
"(subItem,subIndex) in item.DinnerList"
>
<input
:id=
"'H'+index+'_'+subIndex"
type=
"checkbox"
v-model=
"subItem.isChecked"
@
click=
"getDinner(item.DinnerList,subIndex)"
/>
<label
:for=
"'H'+index+'_'+subIndex"
style=
"cursor: pointer"
>
{{
subItem
.
Name
}}
</label>
<label
:for=
"'H'+index+'_'+subIndex"
style=
"cursor: pointer"
>
{{
subItem
.
Real
Name
}}
</label>
</div>
</div>
</el-tab-pane>
...
...
@@ -143,6 +143,7 @@
ckDinnerObj
.
ID
=
this
.
ckedDinner
.
ID
;
ckDinnerObj
.
Address
=
this
.
ckedDinner
.
Address
;
ckDinnerObj
.
Name
=
this
.
ckedDinner
.
Name
;
ckDinnerObj
.
RealName
=
this
.
ckedDinner
.
RealName
;
ckDinnerObj
.
PayStyle
=
this
.
ckedDinner
.
PayStyle
;
ckDinnerObj
.
Tel
=
this
.
ckedDinner
.
Tel
;
ckDinnerObj
.
RebateRatio
=
this
.
ckedDinner
.
RebateRatio
;
...
...
src/router/config.js
View file @
bf3cfb10
...
...
@@ -1928,16 +1928,16 @@ export default {
title
:
'领队用款'
},
},
{
path
:
'/TravelPassengerList
'
,
//旅客名单 可
分房
name
:
'TravelPassengerList'
,
path
:
'/TravelPassengerList
2'
,
//旅客名单 不能
分房
name
:
'TravelPassengerList
2
'
,
component
:
resolve
=>
require
([
'@/components/TravelManager/TravelList/TravelPassengerList2'
],
resolve
),
meta
:
{
title
:
'旅客名单'
},
},
{
path
:
'/TravelPassengerList
2'
,
//旅客名单 不能分房
name
:
'TravelPassengerList
2
'
,
path
:
'/TravelPassengerList
'
,
//旅客名单 可分房
name
:
'TravelPassengerList'
,
component
:
resolve
=>
require
([
'@/components/TravelManager/TravelList/TravelPassengerList'
],
resolve
),
meta
:
{
title
:
'旅客名单'
...
...
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