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
12873c00
Commit
12873c00
authored
Jun 20, 2019
by
黄奎
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
e4957e60
301369a8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
140 additions
and
124 deletions
+140
-124
roomReservations.vue
src/components/Hotel/roomReservations.vue
+1
-1
roomReservationsDetails.vue
src/components/Hotel/roomReservationsDetails.vue
+19
-1
roomQuery2.vue
src/components/Supplier/roomQuery2.vue
+120
-122
No files found.
src/components/Hotel/roomReservations.vue
View file @
12873c00
...
...
@@ -117,7 +117,7 @@
<th>
备注
</th>
</tr>
<tr
v-if=
"list.length==0"
>
<td
colspan=
"1
0
"
>
暂无数据
</td>
<td
colspan=
"1
1
"
>
暂无数据
</td>
</tr>
<tbody
v-for=
"(outItem,outindex) in list"
:class=
"
{roomReservationsSplitTrCss:outindex%2!=0}">
<template
v-for=
"(item,index) in outItem.StaticsReportList"
>
...
...
src/components/Hotel/roomReservationsDetails.vue
View file @
12873c00
...
...
@@ -5,6 +5,12 @@
margin
:
5px
auto
;
font-size
:
12px
;
}
.rq_importNote
{
color
:
red
;
}
.rq_disImNote
{
color
:
#ea6d6d
;
}
</
style
>
...
...
@@ -294,7 +300,9 @@
<tr
v-if=
"subItem.SupplierToDmcRemarks"
>
<td
width=
"70"
style=
"text-align:right;"
>
供应商对地接备注:
</td>
<td>
{{
subItem
.
SupplierToDmcRemarks
}}
<span
:class=
"
{'rq_disImNote':subItem.SupplierToDmcHotelStatus==1
&&
DateMinus(subItem.SupplierToDmcHotelStatusTime)
<
=
5
,'
rq_importNote
'
:subItem
.
SupplierToDmcHotelStatus=
=2&&DateMinus(subItem.SupplierToDmcHotelStatusTime)
<
=
5
}"
>
{{
subItem
.
SupplierToDmcRemarks
}}
</span>
</td>
</tr>
</table>
...
...
@@ -330,6 +338,7 @@
</div>
</template>
<
script
>
import
moment
from
'moment'
import
comCheckHotel
from
"../commonPage/comCheckHotel.vue"
;
export
default
{
data
()
{
...
...
@@ -388,6 +397,14 @@
let
str
=
`comCheckHotel
${
index
}${
subIndex
}
`
this
.
$refs
[
str
][
0
].
getCheckHotel
();
},
DateMinus
(
sDate
)
{
var
newDate
=
moment
(
sDate
).
format
(
"YYYY-MM-DD"
);
var
sdate
=
new
Date
(
newDate
.
replace
(
/-/g
,
"/"
));
var
now
=
new
Date
();
var
days
=
now
.
getTime
()
-
sdate
.
getTime
();
var
day
=
Math
.
abs
(
parseInt
(
days
/
(
1000
*
60
*
60
*
24
)));
return
day
;
},
getItem
(
index
,
subIndex
)
{
this
.
checkedIndex
=
index
this
.
checkedsubIndex
=
subIndex
...
...
@@ -528,6 +545,7 @@
})
});
this
.
list
=
list
;
console
.
log
(
this
.
list
,
'listttt'
);
this
.
$forceUpdate
();
}
}
else
{
...
...
src/components/Supplier/roomQuery2.vue
View file @
12873c00
This diff is collapsed.
Click to expand it.
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