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
6e2b7661
Commit
6e2b7661
authored
Jul 19, 2024
by
liudong1993
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
b04f8da5
62b76f14
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
3 deletions
+39
-3
HotelSure.vue
src/components/Hotel/DiDa/HotelSure.vue
+2
-0
OpHotelOrderDetail.vue
...omponents/TravelManager/TravelList/OpHotelOrderDetail.vue
+37
-3
No files found.
src/components/Hotel/DiDa/HotelSure.vue
View file @
6e2b7661
...
...
@@ -835,6 +835,7 @@ export default {
//备注
guestRequest
:
""
,
hotelId
:
''
,
roomType
:
0
,
},
auditNum
:
0
,
childNum
:
0
,
...
...
@@ -924,6 +925,7 @@ export default {
this
.
sureMsg
.
EmployeeIdStr
=
this
.
getLocalStorage
().
EmployeeId
+
""
;
this
.
sureMsg
.
totalRoomCount
=
this
.
params
.
searchroomGroup
.
length
;
this
.
sureMsg
.
CheckOutDate
=
this
.
params
.
CheckOutDate
;
this
.
sureMsg
.
roomType
=
this
.
roomRateDetails
.
RatePlanList
[
0
].
BedType
;
//判断选择的人数与入住人数
let
Count1
=
0
;
this
.
sureMsg
.
GuestList
.
forEach
(
item
=>
{
...
...
src/components/TravelManager/TravelList/OpHotelOrderDetail.vue
View file @
6e2b7661
...
...
@@ -344,7 +344,10 @@
<ul>
<li
class=
"HS2_title"
>
房型信息
</li>
<li>
<div>
<div
v-if=
"details.model.Source==4"
>
{{
getRoomType
(
details
.
parmResultRoomInfo
.
roomType
)
}}
</div>
<div
v-else
>
<template
v-if=
"details.parmResult.roomType==1"
>
单人
</
template
>
<
template
v-if=
"details.parmResult.roomType==2"
>
双人
</
template
>
<
template
v-if=
"details.parmResult.roomType==3"
>
双
</
template
>
...
...
@@ -384,7 +387,8 @@
<div>
<div>
<label
class=
"HS2_title"
>
预订人:
</label>
<div>
{{details.parmResult.guestLastName + details.parmResult.guestFirstName}}
</div>
<div
v-if=
"details.model.Source==4"
>
{{details.parmResultRoomInfo.guestLastName + details.parmResultRoomInfo.guestFirstName}}
</div>
<div
v-else
>
{{details.parmResult.guestLastName + details.parmResult.guestFirstName}}
</div>
</div>
<div>
<label
class=
"HS2_title"
>
当前地址:
</label>
...
...
@@ -439,6 +443,7 @@ export default {
ThirdOrderNo
:
''
}
},
HotelRoomTypes
:[],
loading
:
true
};
},
...
...
@@ -454,6 +459,10 @@ export default {
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
==
1
)
{
let
data
=
res
.
data
.
data
if
(
res
.
data
.
data
.
model
.
Source
==
4
){
this
.
getdidaBedType
();
}
console
.
log
(
"data"
,
data
);
this
.
details
=
data
}
else
{
this
.
Error
(
res
.
data
.
message
);
...
...
@@ -461,7 +470,32 @@ export default {
})
},
methods
:
{
//获取道旅床类型列表
getdidaBedType
()
{
this
.
apipost
(
"dmc_post_GetDidaBedTypeBaseInfo"
,
this
.
hotelMsg
,
res
=>
{
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
HotelRoomTypes
=
res
.
data
.
data
;
}
},
null
);
},
//获取房型
getRoomType
(
roomtypeId
)
{
let
roomtypeName
=
""
;
if
(
roomtypeId
>
0
)
{
this
.
HotelRoomTypes
.
forEach
(
item
=>
{
if
(
item
.
ID
==
roomtypeId
)
{
roomtypeName
=
item
.
Name_CN
;
}
});
}
return
roomtypeName
;
},
}
};
</
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