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
e88f3085
Commit
e88f3085
authored
Jul 03, 2025
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
274bac45
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
2 deletions
+31
-2
ReserveRoomMonth.vue
src/components/FinancialModule/HandFee/ReserveRoomMonth.vue
+31
-2
No files found.
src/components/FinancialModule/HandFee/ReserveRoomMonth.vue
View file @
e88f3085
...
@@ -21,6 +21,14 @@
...
@@ -21,6 +21,14 @@
</el-date-picker>
</el-date-picker>
</el-form-item>
</el-form-item>
</el-col>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
"酒店"
>
<el-select
v-model=
"msg.HotelId"
class=
"w200"
filterable
>
<el-option
key=
"0"
label=
"只看压房"
:value=
"0"
></el-option>
<el-option
v-for=
"item in HotelList"
:key=
"item.ID"
:label=
"item.Name"
:value=
"item.ID"
></el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
</el-row>
</el-form>
</el-form>
<ul
class=
"clearfix"
>
<ul
class=
"clearfix"
>
...
@@ -99,13 +107,15 @@
...
@@ -99,13 +107,15 @@
return
{
return
{
msg
:
{
msg
:
{
QEndDate
:
''
,
//出团起始日期
QEndDate
:
''
,
//出团起始日期
QStartDate
:
''
QStartDate
:
''
,
HotelId
:
0
},
},
missionDate
:
[],
//发团日期
missionDate
:
[],
//发团日期
DataList
:
[],
DataList
:
[],
TotalProfit
:
0
,
TotalProfit
:
0
,
TravelNum
:
0
,
TravelNum
:
0
,
loading
:
false
loading
:
false
,
HotelList
:[]
}
}
},
},
created
()
{
created
()
{
...
@@ -124,6 +134,7 @@
...
@@ -124,6 +134,7 @@
},
},
mounted
()
{
mounted
()
{
this
.
getdatalist
();
this
.
getdatalist
();
this
.
initHotel
();
},
},
methods
:
{
methods
:
{
getdatalist
()
{
getdatalist
()
{
...
@@ -178,6 +189,24 @@
...
@@ -178,6 +189,24 @@
query
query
});
});
},
},
//初始化酒店列表
initHotel
()
{
var
hMsg
=
{
Name
:
''
,
IsAllHotel
:
1
,
sDate
:
this
.
msg
.
QStartDate
};
this
.
apipost
(
"hotel_post_GetHasStockHotelList"
,
hMsg
,
res
=>
{
this
.
loading
=
false
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
HotelList
=
res
.
data
.
data
;
}
},
null
);
},
}
}
}
}
...
...
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