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
e0a6c0b5
Commit
e0a6c0b5
authored
Jan 10, 2023
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
3a32dd7e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
12 deletions
+16
-12
GroupRateQuery.vue
src/components/FinancialModule/GroupRateQuery.vue
+2
-2
HotelQueryList.vue
src/components/Hotel/HotelQueryList.vue
+10
-6
HotelList.vue
src/components/Hotel/singleProduct/HotelList.vue
+4
-4
No files found.
src/components/FinancialModule/GroupRateQuery.vue
View file @
e0a6c0b5
...
@@ -649,8 +649,8 @@ export default {
...
@@ -649,8 +649,8 @@ export default {
},
},
getPageList
(){
// 获取列表数据
getPageList
(){
// 获取列表数据
if
(
this
.
transactionDate
){
if
(
this
.
transactionDate
){
this
.
msg
.
QStartDate
=
this
.
transactionDate
[
0
]
?
'2019-01-01'
:
''
this
.
msg
.
QStartDate
=
this
.
transactionDate
[
0
]
this
.
msg
.
QEndDate
=
this
.
transactionDate
[
1
]
?
'2019-02-01'
:
''
this
.
msg
.
QEndDate
=
this
.
transactionDate
[
1
]
}
}
this
.
loading
=
true
;
this
.
loading
=
true
;
this
.
apipost
(
'Financial_post_GetTravelFinanceRateSetPageList'
,
this
.
msg
,
res
=>
{
this
.
apipost
(
'Financial_post_GetTravelFinanceRateSetPageList'
,
this
.
msg
,
res
=>
{
...
...
src/components/Hotel/HotelQueryList.vue
View file @
e0a6c0b5
...
@@ -100,7 +100,7 @@
...
@@ -100,7 +100,7 @@
</div>
</div>
<template
v-if=
"isShow"
>
<template
v-if=
"isShow"
>
<el-table
v-if=
"dataList.length>0"
:data=
"dataList"
style=
"width:100%"
border
v-loading=
'loading'
<el-table
v-if=
"dataList.length>0"
:data=
"dataList"
style=
"width:100%"
border
v-loading=
'loading'
:height=
"tableHeight"
>
ref=
"mytable"
key=
"HotelId"
:height=
"tableHeight"
>
<el-table-column
fixed
label=
"酒店名称"
min-width=
"180"
>
<el-table-column
fixed
label=
"酒店名称"
min-width=
"180"
>
<template
slot-scope=
"scope"
>
<template
slot-scope=
"scope"
>
<div
style=
"text-decoration: underline;cursor:pointer"
@
click=
"GotoHotel(scope.row.HotelId)"
>
<div
style=
"text-decoration: underline;cursor:pointer"
@
click=
"GotoHotel(scope.row.HotelId)"
>
...
@@ -131,16 +131,16 @@
...
@@ -131,16 +131,16 @@
</
template
>
</
template
>
</div>
</div>
<div
class=
"Hotel_kong Com_hoteldiv Hq_duoge"
<div
class=
"Hotel_kong Com_hoteldiv Hq_duoge"
@
click=
"GotoUrl(scope.row,index,
item
.UseInventory)"
>
@
click=
"GotoUrl(scope.row,index,
scope.row.subList[index]
.UseInventory)"
>
{{
item.Inventory}}/{{item.UseInventory}}/{{item
.RemainingInventory}}
{{
scope.row.subList[index].Inventory}}/{{scope.row.subList[index].UseInventory}}/{{scope.row.subList[index]
.RemainingInventory}}
</div>
</div>
<div
class=
"Hotel_kong Com_hoteldiv"
>
<div
class=
"Hotel_kong Com_hoteldiv"
>
{{
item.ConfirmNum}}/{{item
.ReserveNum}}
{{
scope.row.subList[index].ConfirmNum}}/{{scope.row.subList[index]
.ReserveNum}}
</div>
</div>
<div
class=
"Hotel_kong Com_hoteldiv"
>
<div
class=
"Hotel_kong Com_hoteldiv"
>
<span
v-if=
"
item.UseInventory-item
.Inventory>0"
<span
v-if=
"
scope.row.subList[index].UseInventory-scope.row.subList[index]
.Inventory>0"
style=
"color:red;"
>
style=
"color:red;"
>
{{
item.UseInventory-item
.Inventory}}
{{
scope.row.subList[index].UseInventory-scope.row.subList[index]
.Inventory}}
</span>
</span>
</div>
</div>
</template>
</template>
...
@@ -418,6 +418,10 @@
...
@@ -418,6 +418,10 @@
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
dataList
=
res
.
data
.
data
;
this
.
dataList
=
res
.
data
.
data
;
this
.
isShow
=
true
;
this
.
isShow
=
true
;
let
_this
=
this
this
.
$nextTick
(()
=>
{
_this
.
$refs
.
mytable
.
doLayout
();
})
}
else
{
}
else
{
this
.
Error
(
res
.
data
.
message
);
this
.
Error
(
res
.
data
.
message
);
}
}
...
...
src/components/Hotel/singleProduct/HotelList.vue
View file @
e0a6c0b5
...
@@ -126,15 +126,15 @@
...
@@ -126,15 +126,15 @@
</
template
>
</
template
>
</div>
</div>
<div
class=
"Hotel_kong Com_hoteldiv Hq_duoge"
>
<div
class=
"Hotel_kong Com_hoteldiv Hq_duoge"
>
{{
item.Inventory}}/{{item.UseInventory}}/{{item
.RemainingInventory}}
{{
scope.row.subList[index].Inventory}}/{{scope.row.subList[index].UseInventory}}/{{scope.row.subList[index]
.RemainingInventory}}
</div>
</div>
<div
class=
"Hotel_kong Com_hoteldiv"
>
<div
class=
"Hotel_kong Com_hoteldiv"
>
{{
item.ConfirmNum}}/{{item
.ReserveNum}}
{{
scope.row.subList[index].ConfirmNum}}/{{scope.row.subList[index]
.ReserveNum}}
</div>
</div>
<div
class=
"Hotel_kong Com_hoteldiv"
>
<div
class=
"Hotel_kong Com_hoteldiv"
>
<span
v-if=
"
item.UseInventory-item
.Inventory>0"
<span
v-if=
"
scope.row.subList[index].UseInventory-scope.row.subList[index]
.Inventory>0"
style=
"color:red;"
>
style=
"color:red;"
>
{{
item.UseInventory-item
.Inventory}}
{{
scope.row.subList[index].UseInventory-scope.row.subList[index]
.Inventory}}
</span>
</span>
</div>
</div>
</div>
</div>
...
...
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