Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
22ff4d84
U
uni-app
项目概览
DCloud
/
uni-app
3 个月 前同步成功
通知
725
Star
38705
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
7
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
7
Issue
7
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
22ff4d84
编写于
5月 27, 2021
作者:
Q
qiang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(h5): useDocumentTitle
上级
650c3164
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
34 addition
and
5 deletion
+34
-5
packages/uni-app/dist/uni-app.cjs.js
packages/uni-app/dist/uni-app.cjs.js
+1
-1
packages/uni-app/dist/uni-app.es.js
packages/uni-app/dist/uni-app.es.js
+1
-1
packages/uni-h5/dist/uni-h5.cjs.js
packages/uni-h5/dist/uni-h5.cjs.js
+9
-1
packages/uni-h5/dist/uni-h5.es.js
packages/uni-h5/dist/uni-h5.es.js
+10
-1
packages/uni-h5/src/framework/components/page/index.ts
packages/uni-h5/src/framework/components/page/index.ts
+4
-1
packages/uni-h5/src/helpers/useDocumentTitle.ts
packages/uni-h5/src/helpers/useDocumentTitle.ts
+9
-0
未找到文件。
packages/uni-app/dist/uni-app.cjs.js
浏览文件 @
22ff4d84
...
...
@@ -117,7 +117,7 @@ const onError = /*#__PURE__*/ createHook(ON_ERROR);
const
onThemeChange
=
/*#__PURE__*/
createHook
(
ON_THEME_CHANGE
);
const
onPageNotFound
=
/*#__PURE__*/
createHook
(
ON_PAGE_NOT_FOUND
);
const
onUnhandledRejection
=
/*#__PURE__*/
createHook
(
ON_UNHANDLE_REJECTION
);
// export const onLoad = /*#__PURE__*/ createHook(ON_LOAD)
const
onReady
=
/*#__PURE__*/
createHook
(
ON_READY
);
const
onUnload
=
/*#__PURE__*/
createHook
(
ON_UNLOAD
);
const
onResize
=
/*#__PURE__*/
createHook
(
ON_RESIZE
);
...
...
packages/uni-app/dist/uni-app.es.js
浏览文件 @
22ff4d84
...
...
@@ -82,7 +82,7 @@ const onError = /*#__PURE__*/ createHook(ON_ERROR);
const
onThemeChange
=
/*#__PURE__*/
createHook
(
ON_THEME_CHANGE
);
const
onPageNotFound
=
/*#__PURE__*/
createHook
(
ON_PAGE_NOT_FOUND
);
const
onUnhandledRejection
=
/*#__PURE__*/
createHook
(
ON_UNHANDLE_REJECTION
);
// export const onLoad = /*#__PURE__*/ createHook(ON_LOAD)
const
onReady
=
/*#__PURE__*/
createHook
(
ON_READY
);
const
onUnload
=
/*#__PURE__*/
createHook
(
ON_UNLOAD
);
const
onResize
=
/*#__PURE__*/
createHook
(
ON_RESIZE
);
...
...
packages/uni-h5/dist/uni-h5.cjs.js
浏览文件 @
22ff4d84
...
...
@@ -10865,6 +10865,12 @@ function createRightWindowTsx(rightWindow, layoutState, windowState) {
},
windowState
),
null
,
16
)])],
12
,
[
"
data-show
"
]),
[[
vue
.
vShow
,
layoutState
.
showRightWindow
||
layoutState
.
apiShowRightWindow
]]);
}
}
function
useDocumentTitle
(
pageMeta
)
{
function
update
()
{
document
.
title
=
pageMeta
.
navigationBar
.
titleText
;
}
vue
.
watchEffect
(
update
);
}
function
hexToRgba
(
hex
)
{
let
r
;
let
g2
;
...
...
@@ -11330,7 +11336,9 @@ function createPageRefreshTsx(refreshRef, pageMeta) {
var
index$2
=
defineSystemComponent
({
name
:
"
Page
"
,
setup
(
_props
,
ctx
)
{
const
{
navigationBar
}
=
providePageMeta
(
getStateId
());
const
pageMeta
=
providePageMeta
(
getStateId
());
const
navigationBar
=
pageMeta
.
navigationBar
;
useDocumentTitle
(
pageMeta
);
return
()
=>
vue
.
createVNode
(
"
uni-page
"
,
null
,
__UNI_FEATURE_NAVIGATIONBAR__
&&
navigationBar
.
style
!==
"
custom
"
?
[
vue
.
createVNode
(
PageHead
),
createPageBodyVNode
(
ctx
)]
:
[
createPageBodyVNode
(
ctx
)]);
}
});
...
...
packages/uni-h5/dist/uni-h5.es.js
浏览文件 @
22ff4d84
...
...
@@ -19966,6 +19966,13 @@ const UniServiceJSBridge$1 = /* @__PURE__ */ extend(ServiceJSBridge, {
UniViewJSBridge.subscribeHandler(pageId + "." + event, args, pageId);
}
});
function useDocumentTitle(pageMeta) {
function update() {
document.title = pageMeta.navigationBar.titleText;
}
watchEffect(update);
onActivated(update);
}
function hexToRgba(hex) {
let r;
let g2;
...
...
@@ -20679,7 +20686,9 @@ function createPageRefreshTsx(refreshRef, pageMeta) {
var index$2 = defineSystemComponent({
name: "Page",
setup(_props, ctx) {
const {navigationBar} = providePageMeta(getStateId());
const pageMeta = providePageMeta(getStateId());
const navigationBar = pageMeta.navigationBar;
useDocumentTitle(pageMeta);
return () => createVNode("uni-page", null, __UNI_FEATURE_NAVIGATIONBAR__ && navigationBar.style !== "custom" ? [createVNode(PageHead), createPageBodyVNode(ctx)] : [createPageBodyVNode(ctx)]);
}
});
...
...
packages/uni-h5/src/framework/components/page/index.ts
浏览文件 @
22ff4d84
...
...
@@ -7,6 +7,7 @@ import {
SetupContext
,
}
from
'
vue
'
import
{
defineSystemComponent
}
from
'
@dcloudio/uni-components
'
import
{
useDocumentTitle
}
from
'
../../../helpers/useDocumentTitle
'
import
PageHead
from
'
./pageHead
'
import
PageBody
from
'
./pageBody
'
...
...
@@ -16,7 +17,9 @@ import { getStateId } from '../../../helpers/dom'
export
default
defineSystemComponent
({
name
:
'
Page
'
,
setup
(
_props
,
ctx
)
{
const
{
navigationBar
}
=
providePageMeta
(
getStateId
())
const
pageMeta
=
providePageMeta
(
getStateId
())
const
navigationBar
=
pageMeta
.
navigationBar
useDocumentTitle
(
pageMeta
)
return
()
=>
createVNode
(
'
uni-page
'
,
...
...
packages/uni-h5/src/helpers/useDocumentTitle.ts
0 → 100644
浏览文件 @
22ff4d84
import
{
watchEffect
,
onActivated
}
from
'
vue
'
export
function
useDocumentTitle
(
pageMeta
:
UniApp
.
PageRouteMeta
)
{
function
update
()
{
document
.
title
=
pageMeta
.
navigationBar
.
titleText
!
}
watchEffect
(
update
)
onActivated
(
update
)
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录