Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-uni-app-x-zh
提交
323b4a22
U
unidocs-uni-app-x-zh
项目概览
DCloud
/
unidocs-uni-app-x-zh
通知
144
Star
2
Fork
33
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
9
列表
看板
标记
里程碑
合并请求
11
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
unidocs-uni-app-x-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
9
Issue
9
列表
看板
标记
里程碑
合并请求
11
合并请求
11
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
323b4a22
编写于
3月 30, 2024
作者:
shutao-dc
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
scroll-view 增加 嵌套模式 说明
上级
0a94b933
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
48 addition
and
1 deletion
+48
-1
docs/component/list-view.md
docs/component/list-view.md
+5
-0
docs/component/scroll-view.md
docs/component/scroll-view.md
+43
-1
未找到文件。
docs/component/list-view.md
浏览文件 @
323b4a22
...
...
@@ -43,6 +43,11 @@ list-view组件有默认的下拉刷新样式,如果想自定义,则需使
+
3.93版本开始支持
+
目前自定义下拉刷新元素不支持放在list-view的首个子元素位置上。可能无法正常显示
### 嵌套模式
scroll-view开启嵌套模式后,list-view 可作为内层滚动视图与外层 scroll-view 实现嵌套滚动
设置内层 list-view 的
`associative-container`
属性为 "nested-scroll-view",开启内层 list-view 支持与外层 scroll-view 嵌套滚动
<!-- UTSCOMJSON.list-view.compatibility -->
...
...
docs/component/scroll-view.md
浏览文件 @
323b4a22
...
...
@@ -32,6 +32,47 @@
```
**具体代码请参考:**
[
自定义下拉刷新样式示例
](
https://gitcode.net/dcloud/hello-uni-app-x/-/blob/alpha/pages/component/scroll-view/scroll-view-custom-refresher-props.uvue
)
### 嵌套模式
当存在两个 scroll-view 相互嵌套的场景时,两者滚动存在冲突不能很丝滑的进行衔接,可将外层 scroll-view 改成嵌套模式,这样可以让两个 scroll-view 的滚动衔接起来。
```
vue
<scroll-view
style=
"flex:1"
type=
"nested"
>
<nested-scroll-header>
<view
style=
"height: 200px;background-color: #66ccff;align-items: center;justify-content: center;"
>
<text>
nested-scroll-header
</text>
</view>
</nested-scroll-header>
<nested-scroll-body>
<view
style=
"flex:1"
>
<scroll-view
style=
"flex:1"
associative-container=
"nested-scroll-view"
>
<view
v-for=
"index in 20"
style=
"background-color: aliceblue; height: 80px;justify-content: center;"
>
<text
style=
"color: black;"
>
{{index}}
</text>
</view>
</scroll-view>
</view>
</nested-scroll-body>
</scroll-view>
```
**开启嵌套模式设置如下:**
1.
设置外层 scroll-view 的 type 属性为 "nested" ,将外层 scroll-view 改成嵌套模式
2.
设置内层 scroll-view 的
`associative-container`
属性为 "nested-scroll-view",开启内层 scroll-view 支持与外层 scroll-view 嵌套滚动
**嵌套滚动策略:**
当向下滚动时,先滚动外层 scroll-view 再滚动里层 scroll-view;当向上滚动时,先滚动里层 scroll-view 再滚动外层 scroll-view
**注意事项:**
+
4.11版本开始支持嵌套模式
+
外层 scroll-view 的子节点只支持
`nested-scroll-header`
和
`nested-scroll-body`
和自定义 refresher
+
外层 scroll-view 的子节点中只能有一个
`nested-scroll-body`
+
`nested-scroll-header`
和
`nested-scroll-body`
只能有一个子节点
+
`nested-scroll-header`
只能渲染在
`nested-scroll-body`
上面
+
与nested-scroll嵌套滚动协商互补不兼容,
`nested-scroll-header`
和
`nested-scroll-body`
优先级高于nested-scroll嵌套滚动协商
+
内层滚动视图支持 scroll-view 和 list-view
### nested-scroll嵌套滚动协商@nested
...
...
@@ -82,7 +123,8 @@ onNestedPreScroll(event: NestedPreScrollEvent) {
**注意:**
+
仅Android平台支持嵌套滚动协商
+
嵌套滚动协商仅支持竖向滚动,横向滚动不支持
+
nested-scroll-child设置的元素必须配置custom-nested-scroll = true,否则配置无效。
+
nested-scroll-child设置的元素必须配置custom-nested-scroll = true,否则配置无效
+
与
`nested-scroll-header`
和
`nested-scroll-body`
不兼容,scroll-view 设置嵌套模式后,嵌套滚动手势协商相关事件将不会触发
**具体代码请参考:**
[
nested-scroll嵌套滚动示例
](
https://gitcode.net/dcloud/hello-uni-app-x/-/blob/alpha/pages/template/long-list/long-list.uvue
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录