Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
程序yang
unidocs-zh
提交
9b1d2b73
U
unidocs-zh
项目概览
程序yang
/
unidocs-zh
与 Fork 源项目一致
Fork自
DCloud / unidocs-zh
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
unidocs-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
9b1d2b73
编写于
5月 05, 2022
作者:
D
DCloud_LXH
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update: 只有一级菜单时不隐藏
上级
81aef8b8
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
26 addition
and
12 deletion
+26
-12
docs/.vuepress/theme/components/Navbar.vue
docs/.vuepress/theme/components/Navbar.vue
+17
-3
docs/.vuepress/theme/config/navbar.js
docs/.vuepress/theme/config/navbar.js
+7
-7
docs/api/plugins/getEnterOptionsSync.md
docs/api/plugins/getEnterOptionsSync.md
+1
-1
docs/api/plugins/getLaunchOptionsSync.md
docs/api/plugins/getLaunchOptionsSync.md
+1
-1
未找到文件。
docs/.vuepress/theme/components/Navbar.vue
浏览文件 @
9b1d2b73
...
...
@@ -125,9 +125,19 @@ export default {
this
.
navbarHeight
=
this
.
navbar
.
clientHeight
this
.
subNavBarHeight
=
this
.
subNavBar
.
clientHeight
this
.
mainNavBarHeight
=
this
.
mainNavBar
.
clientHeight
this
.
scrollBehavior
()
},
scrollBehavior
()
{
this
.
removeWindowScroll
()
this
.
onWindowScroll
()
if
(
this
.
showSubNavBar
)
{
this
.
addWindowScroll
()
}
else
{
this
.
fixedNavbar
=
true
}
},
addWindowScroll
()
{
if
(
os
.
pc
)
{
this
.
onWindowScroll
()
window
.
addEventListener
(
'
scroll
'
,
this
.
onWindowScroll
,
false
)
}
},
...
...
@@ -137,10 +147,12 @@ export default {
this
.
sideBar
&&
this
.
sideBar
.
removeAttribute
(
'
style
'
)
this
.
vuepressToc
&&
this
.
vuepressToc
.
removeAttribute
(
'
style
'
)
this
.
navbar
&&
this
.
navbar
.
removeAttribute
(
'
style
'
)
this
.
pageContainer
&&
(
this
.
pageContainer
.
style
.
marginTop
=
'
auto
'
)
if
(
this
.
pageContainer
)
{
this
.
pageContainer
.
style
.
marginTop
=
this
.
showSubNavBar
?
'
auto
'
:
`
${
this
.
navbarHeight
}
px`
}
},
onWindowScroll
()
{
const
scrollTop
=
document
.
documentElement
.
scrollTop
||
document
.
body
.
scrollTop
;
const
scrollTop
=
!
this
.
showSubNavBar
?
0
:
document
.
documentElement
.
scrollTop
||
document
.
body
.
scrollTop
;
if
(
!
this
.
fixedNavbar
)
{
let
sideTop
=
this
.
navbarHeight
-
scrollTop
...
...
@@ -190,10 +202,12 @@ export default {
watch
:
{
fixedNavbar
()
{
this
.
fixedSideBarHeight
()
this
.
scrollBehavior
()
},
'
navConfig.userNavIndex
'
()
{
this
.
$nextTick
(()
=>
{
this
.
fixedSideBarHeight
()
this
.
scrollBehavior
()
})
}
}
...
...
docs/.vuepress/theme/config/navbar.js
浏览文件 @
9b1d2b73
...
...
@@ -96,11 +96,11 @@ export const navbar = [
type
:
'
link
'
,
link
:
'
https://mp.kuaishou.com/docs/develop/frame/config/conf_appjson.html
'
},
{
text
:
'
京东小程序
'
,
type
:
'
link
'
,
link
:
'
https://mp-docs.jd.com/framework/
'
},
{
text
:
'
京东小程序
'
,
type
:
'
link
'
,
link
:
'
https://mp-docs.jd.com/framework/
'
},
{
text
:
'
华为快应用
'
,
type
:
'
link
'
,
...
...
@@ -118,12 +118,12 @@ export const navbar = [
},
]
},
/*
{
{
link
:
"
https://github.com/dcloudio/uni-app
"
,
target
:
"
_blank
"
,
text
:
"
GitHub
"
,
type
:
"
link
"
}
*/
}
]
},
{
...
...
docs/api/plugins/getEnterOptionsSync.md
浏览文件 @
9b1d2b73
...
...
@@ -14,7 +14,7 @@
|scene|Number|启动时的场景值,具体值含义请查看各平台文档说明|其他平台均支持,
`字节小程序(1.12.0)`
|
|query|Object|启动时的 query 参数|其他平台均支持,
`字节小程序(1.12.0)`
|
|referrerInfo|Object|来源信息。如果没有则返回
`{}`
|其他平台均支持,
`字节小程序(1.15.0)`
|
|forwardMaterials|Array.
<Object
>
|打开的文件信息数组,只有从聊天素材场景打开(scene为1173)才会携带该参数|
`微信小程序`
|
|forwardMaterials|Array.
\<
Object
\
>
|打开的文件信息数组,只有从聊天素材场景打开(scene为1173)才会携带该参数|
`微信小程序`
|
|chatType|number|打开的文件信息数组,只有从聊天素材场景打开(scene为1173)才会携带该参数|
`仅微信小程序`
|
|apiCategory|string|API 类别|
`仅微信小程序(2.20.0)`
|
|showFrom|number|唤起小程序的方式,目前取值固定为 10,表示通过 schema 唤起|
`仅字节小程序(1.90.0)`
|
...
...
docs/api/plugins/getLaunchOptionsSync.md
浏览文件 @
9b1d2b73
...
...
@@ -14,7 +14,7 @@
|scene|Number|启动时的场景值,具体值含义请查看各平台文档说明。钉钉小程序在 IDE 恒为0000,真机不支持。|其他平台均支持,
`字节小程序(1.12.0)`
|
|query|Object|启动时的 query 参数|其他平台均支持,
`字节小程序(1.12.0)`
|
|referrerInfo|Object|来源信息。如果没有则返回
`{}`
|其他平台均支持,
`字节小程序(1.15.0)`
,
`飞书小程序不支持`
,
`钉钉小程序不支持`
|
|forwardMaterials|Array.
<Object
>
|打开的文件信息数组,只有从聊天素材场景打开(scene为1173)才会携带该参数|
`微信小程序`
、
`QQ小程序`
|
|forwardMaterials|Array.
\<
Object
\
>
|打开的文件信息数组,只有从聊天素材场景打开(scene为1173)才会携带该参数|
`微信小程序`
、
`QQ小程序`
|
|entryDataHash|string|群入口信息,通过群应用商店打开、群分享卡片打开的小程序可获得|
`仅QQ小程序`
|
|chatType|number|打开的文件信息数组,只有从聊天素材场景打开(scene为1173)才会携带该参数|
`仅微信小程序`
|
|apiCategory|string|API 类别|
`仅微信小程序(2.20.0)`
|
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录