Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hls-easy-ui
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
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
easyUI
hls-easy-ui
Commits
3e2a1bc1
Commit
3e2a1bc1
authored
Jun 28, 2019
by
Nature
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
解决content高度100%页面遮挡问题
parent
52404ae0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
18 deletions
+31
-18
index.vue
packages/components/HContent/index.vue
+31
-18
No files found.
packages/components/HContent/index.vue
View file @
3e2a1bc1
...
@@ -10,7 +10,6 @@
...
@@ -10,7 +10,6 @@
</
template
>
</
template
>
<
script
>
<
script
>
import
{
detectOS
}
from
'../../common/utils/index'
export
default
{
export
default
{
name
:
'HContent'
,
name
:
'HContent'
,
props
:
{
props
:
{
...
@@ -18,9 +17,20 @@ export default {
...
@@ -18,9 +17,20 @@ export default {
type
:
String
,
type
:
String
,
default
:
''
,
default
:
''
,
},
},
calContent
:
{
type
:
Boolean
,
default
:
true
,
},
},
},
mounted
()
{
mounted
()
{
this
.
contentHeight
()
if
(
this
.
calContent
)
{
this
.
contentHeight
()
}
},
activated
()
{
if
(
this
.
calContent
)
{
this
.
contentHeight
()
}
},
},
methods
:
{
methods
:
{
getHeader
()
{
getHeader
()
{
...
@@ -48,25 +58,28 @@ export default {
...
@@ -48,25 +58,28 @@ export default {
return
height
return
height
},
},
contentHeight
()
{
contentHeight
()
{
const
headerEl
=
this
.
getHeader
()
//
const headerEl = this.getHeader()
const
nextHeight
=
this
.
getNextElementHeight
()
const
nextHeight
=
this
.
getNextElementHeight
()
const
winHeight
=
window
.
innerHeight
/*
const winHeight = window.innerHeight
const
winWidth
=
window
.
innerWidth
const winWidth = window.innerWidth
let
paddingHeight
=
0
let paddingHeight = 0
if
(
headerEl
)
{
if (headerEl) {
if
(
detectOS
()
===
'ios'
&&
winWidth
===
375
&&
winHeight
===
812
)
{
if (detectOS() === 'ios' && winWidth === 375 && winHeight === 812) {
paddingHeight
=
40
paddingHeight = 40
}
else
if
(
detectOS
()
===
'ios'
&&
winWidth
===
414
&&
winHeight
===
896
)
{
} else if (detectOS() === 'ios' && winWidth === 414 && winHeight === 896) {
paddingHeight
=
40
paddingHeight = 40
}
else
if
(
detectOS
()
===
'ios'
)
{
} else if (detectOS() === 'ios') {
paddingHeight
=
20
paddingHeight = 20
}
else
{
} else {
paddingHeight
=
0
paddingHeight = 0
}
}
}
} */
let
content
=
this
.
$el
let
content
=
this
.
$el
let
offsetTop
=
content
.
offsetTop
let
offsetTop
=
content
.
offsetTop
content
.
style
.
height
=
(
window
.
innerHeight
-
offsetTop
-
paddingHeight
-
nextHeight
)
+
'px'
if
(
offsetTop
>=
window
.
innerHeight
)
{
offsetTop
=
0
}
content
.
style
.
height
=
(
window
.
innerHeight
-
offsetTop
-
nextHeight
)
+
'px'
},
},
},
},
}
}
...
...
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