Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
20岁爱吃必胜客
uni-app
提交
e7320b24
U
uni-app
项目概览
20岁爱吃必胜客
/
uni-app
与 Fork 源项目一致
Fork自
DCloud / uni-app
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
e7320b24
编写于
12月 15, 2020
作者:
fxy060608
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(runtime): binding current page to navigation-bar
上级
a821048a
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
57 addition
and
19 deletion
+57
-19
packages/uni-cli-shared/components/navigation-bar.vue
packages/uni-cli-shared/components/navigation-bar.vue
+9
-4
src/platforms/app-plus/service/api/ui/navigation-bar.js
src/platforms/app-plus/service/api/ui/navigation-bar.js
+7
-5
src/platforms/app-plus/service/api/util.js
src/platforms/app-plus/service/api/util.js
+8
-1
src/platforms/h5/service/api/ui/navigation-bar.js
src/platforms/h5/service/api/ui/navigation-bar.js
+14
-9
src/platforms/h5/service/api/util.js
src/platforms/h5/service/api/util.js
+19
-0
未找到文件。
packages/uni-cli-shared/components/navigation-bar.vue
浏览文件 @
e7320b24
...
...
@@ -83,8 +83,9 @@ export default {
}
},
created
()
{
const
pages
=
getCurrentPages
()
const
pages
=
getCurrentPages
()
const
page
=
pages
[
pages
.
length
-
1
]
this
.
__$page
=
page
this
.
$watch
(
'
title
'
,
()
=>
{
this
.
setNavigationBarTitle
()
})
...
...
@@ -101,7 +102,7 @@ export default {
this
.
setNavigationBarColor
()
})
// #ifdef APP-PLUS
this
.
_webview
=
page
.
$getAppWebview
()
this
.
_
_$
webview
=
page
.
$getAppWebview
()
attrs
.
forEach
(
key
=>
{
const
titleNView
=
{}
if
(
this
[
key
]
||
this
[
key
].
length
>
0
)
{
...
...
@@ -124,14 +125,18 @@ export default {
methods
:
{
setNavigationBarTitle
()
{
uni
.
setNavigationBarTitle
({
__page__
:
this
.
__$page
,
title
:
this
.
title
})
},
setNavigationBarLoading
()
{
uni
[(
this
.
loading
?
'
show
'
:
'
hide
'
)
+
'
NavigationBarLoading
'
]()
uni
[(
this
.
loading
?
'
show
'
:
'
hide
'
)
+
'
NavigationBarLoading
'
]({
__page__
:
this
.
__$page
})
},
setNavigationBarColor
()
{
uni
.
setNavigationBarColor
({
__page__
:
this
.
__$page
,
frontColor
:
this
.
frontColor
,
backgroundColor
:
this
.
backgroundColor
,
animation
:
{
...
...
@@ -141,7 +146,7 @@ export default {
})
},
setTitleNView
(
titleNView
)
{
const
webview
=
this
.
_webview
const
webview
=
this
.
_
_$
webview
const
style
=
webview
.
getStyle
()
if
(
style
&&
style
.
titleNView
)
{
webview
.
setStyle
({
...
...
src/platforms/app-plus/service/api/ui/navigation-bar.js
浏览文件 @
e7320b24
import
{
get
Last
Webview
getWebview
}
from
'
../util
'
export
function
setNavigationBarTitle
({
__page__
,
title
=
''
}
=
{})
{
const
webview
=
get
LastWebview
(
)
const
webview
=
get
Webview
(
__page__
)
if
(
webview
)
{
const
style
=
webview
.
getStyle
()
if
(
style
&&
style
.
titleNView
)
{
...
...
@@ -49,11 +50,12 @@ function setPageMeta (statusBarStyle) {
pages
[
pages
.
length
-
1
].
$page
.
meta
.
statusBarStyle
=
statusBarStyle
}
export
function
setNavigationBarColor
({
export
function
setNavigationBarColor
({
__page__
,
frontColor
,
backgroundColor
}
=
{})
{
const
webview
=
get
LastWebview
(
)
const
webview
=
get
Webview
(
__page__
)
if
(
webview
)
{
const
styles
=
{}
if
(
frontColor
)
{
...
...
@@ -85,4 +87,4 @@ export function setNavigationBarColor ({
return
{
errMsg
:
'
setNavigationBarColor:fail
'
}
}
}
src/platforms/app-plus/service/api/util.js
浏览文件 @
e7320b24
...
...
@@ -15,6 +15,13 @@ export function callApiSync (api, args, name, alias) {
return
ret
}
export
function
getWebview
(
__page__
)
{
if
(
__page__
)
{
return
__page__
.
$getAppWebview
()
}
return
getLastWebview
()
}
export
function
getLastWebview
()
{
try
{
const
pages
=
getCurrentPages
()
...
...
@@ -225,4 +232,4 @@ export function getFileName (path) {
export
function
getExtName
(
path
)
{
const
array
=
path
.
split
(
'
.
'
)
return
array
.
length
>
1
?
'
.
'
+
array
[
array
.
length
-
1
]
:
''
}
}
src/platforms/h5/service/api/ui/navigation-bar.js
浏览文件 @
e7320b24
function
setNavigationBar
(
type
,
args
)
{
const
pages
=
getCurrentPages
()
if
(
pages
.
length
)
{
const
page
=
pages
[
pages
.
length
-
1
].
$holder
import
{
isCurrentPage
,
getPageHolder
}
from
'
../util.js
'
function
setNavigationBar
(
type
,
args
=
{})
{
const
page
=
getPageHolder
(
args
.
__page__
)
if
(
page
)
{
switch
(
type
)
{
case
'
setNavigationBarColor
'
:
{
...
...
@@ -43,7 +46,9 @@ function setNavigationBar (type, args) {
title
}
=
args
page
.
navigationBar
.
titleText
=
title
document
.
title
=
title
if
(
isCurrentPage
(
page
))
{
// 仅当前页面
document
.
title
=
title
}
UniServiceJSBridge
.
emit
(
'
onNavigationBarChange
'
,
{
titleText
:
title
})
...
...
@@ -58,12 +63,12 @@ export function setNavigationBarColor (args) {
return
setNavigationBar
(
'
setNavigationBarColor
'
,
args
)
}
export
function
showNavigationBarLoading
()
{
return
setNavigationBar
(
'
showNavigationBarLoading
'
)
export
function
showNavigationBarLoading
(
args
)
{
return
setNavigationBar
(
'
showNavigationBarLoading
'
,
args
)
}
export
function
hideNavigationBarLoading
()
{
return
setNavigationBar
(
'
hideNavigationBarLoading
'
)
export
function
hideNavigationBarLoading
(
args
)
{
return
setNavigationBar
(
'
hideNavigationBarLoading
'
,
args
)
}
export
function
setNavigationBarTitle
(
args
)
{
...
...
src/platforms/h5/service/api/util.js
0 → 100644
浏览文件 @
e7320b24
export
function
getPageHolder
(
__page__
)
{
if
(
__page__
)
{
return
__page__
.
$holder
}
const
pages
=
getCurrentPages
()
const
len
=
pages
.
length
if
(
len
)
{
return
pages
[
len
-
1
].
$holder
}
}
export
function
isCurrentPage
(
pageHolder
)
{
const
pages
=
getCurrentPages
()
const
len
=
pages
.
length
if
(
len
)
{
return
pages
[
len
-
1
].
$holder
===
pageHolder
}
return
false
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录