Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
d4aea922
U
uni-app
项目概览
DCloud
/
uni-app
5 天 前同步成功
通知
751
Star
38709
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
8
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
8
Issue
8
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
d4aea922
编写于
9月 10, 2019
作者:
雪洛
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update: H5支持titlePenetrate
上级
1ce1a360
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
32 addition
and
3 deletion
+32
-3
src/platforms/h5/components/page/index.vue
src/platforms/h5/components/page/index.vue
+11
-1
src/platforms/h5/components/page/pageHead.vue
src/platforms/h5/components/page/pageHead.vue
+21
-2
未找到文件。
src/platforms/h5/components/page/index.vue
浏览文件 @
d4aea922
...
...
@@ -140,6 +140,10 @@ export default {
transparentTitle
:
{
type
:
String
,
default
:
'
none
'
},
titlePenetrate
:
{
type
:
String
,
default
:
'
NO
'
}
},
data
()
{
...
...
@@ -148,6 +152,11 @@ export default {
'
auto
'
:
'
transparent
'
,
'
always
'
:
'
float
'
}
const
yesNoParseList
=
{
'
YES
'
:
true
,
'
NO
'
:
false
}
const
navigationBar
=
mergeTitleNView
({
loading
:
false
,
...
...
@@ -159,7 +168,8 @@ export default {
duration
:
'
0
'
,
timingFunc
:
''
,
type
:
titleNViewTypeList
[
this
.
transparentTitle
],
transparentTitle
:
this
.
transparentTitle
transparentTitle
:
this
.
transparentTitle
,
titlePenetrate
:
yesNoParseList
[
this
.
titlePenetrate
]
},
this
.
titleNView
)
const
showNavigationBar
=
this
.
navigationStyle
===
'
default
'
&&
this
.
titleNView
...
...
src/platforms/h5/components/page/pageHead.vue
浏览文件 @
d4aea922
...
...
@@ -2,7 +2,7 @@
<uni-page-head
:uni-page-head-type=
"type"
>
<div
:style=
"
{transitionDuration:duration,transitionTimingFunction:timingFunc,backgroundColor:bgColor,color:textColor}"
:class="{'uni-page-head-transparent':type==='transparent'}"
:class="{'uni-page-head-transparent':type==='transparent'
,'uni-page-head-titlePenetrate': titlePenetrate
}"
class="uni-page-head"
>
<div
class=
"uni-page-head-hd"
>
...
...
@@ -95,8 +95,9 @@
</
template
>
</div>
</div>
<div
<div
v-if=
"type!=='transparent'&&type!=='float'"
:class=
"{'uni-placeholder-titlePenetrate': titlePenetrate}"
class=
"uni-placeholder"
/>
</uni-page-head>
</template>
...
...
@@ -120,6 +121,16 @@ uni-page-head .uni-page-head {
color
:
#fff
;
background-color
:
#000
;
transition-property
:
all
;
}
uni-page-head
.uni-page-head-titlePenetrate
,
uni-page-head
.uni-page-head-titlePenetrate
.uni-page-head-bd
,
uni-page-head
.uni-page-head-titlePenetrate
.uni-page-head-bd
*
{
pointer-events
:
none
;
}
uni-page-head
.uni-page-head-titlePenetrate
*
{
pointer-events
:
auto
;
}
uni-page-head
.uni-page-head.uni-page-head-transparent
.uni-page-head-ft
>
div
{
...
...
@@ -129,6 +140,10 @@ uni-page-head .uni-page-head.uni-page-head-transparent .uni-page-head-ft > div {
uni-page-head
.uni-page-head
~
.uni-placeholder
{
width
:
100%
;
height
:
44px
;
}
uni-page-head
.uni-placeholder-titlePenetrate
{
pointer-events
:
none
;
}
uni-page-head
.uni-page-head
*
{
...
...
@@ -363,6 +378,10 @@ export default {
validator
(
value
)
{
return
[
'
none
'
,
'
auto
'
,
'
always
'
].
indexOf
(
value
)
!==
-
1
}
},
titlePenetrate
:
{
type
:
Boolean
,
default
:
false
}
},
data
()
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录