Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
4aeed860
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5995
Star
90
Fork
162
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
4aeed860
编写于
11月 15, 2023
作者:
shutao-dc
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
添加 list-view-multiplex.nvue 测试list-item部分复用场景
上级
121de3aa
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
71 addition
and
2 deletion
+71
-2
pages/component/list-view/list-view-multiplex.test.js
pages/component/list-view/list-view-multiplex.test.js
+16
-0
pages/component/list-view/list-view-multiplex.uvue
pages/component/list-view/list-view-multiplex.uvue
+42
-0
pages/component/list-view/list-view.uvue
pages/component/list-view/list-view.uvue
+13
-2
未找到文件。
pages/component/list-view/list-view-multiplex.test.js
0 → 100644
浏览文件 @
4aeed860
describe
(
'
component-native-list-view
'
,
()
=>
{
let
page
beforeAll
(
async
()
=>
{
//打开list-view-multiplex测试页
page
=
await
program
.
reLaunch
(
'
/pages/component/list-view/list-view-multiplex
'
)
await
page
.
waitFor
(
'
list-view
'
)
})
//滚动list-view到底部 加载更多 如果异常则直接闪退
it
(
'
check_list_item_multiplex
'
,
async
()
=>
{
await
page
.
callMethod
(
'
listViewScrollByY
'
,
5000
)
await
page
.
waitFor
(
400
)
await
page
.
callMethod
(
'
listViewScrollByY
'
,
100
)
})
})
pages/component/list-view/list-view-multiplex.uvue
0 → 100644
浏览文件 @
4aeed860
<template>
<list-view id="listview" style="flex: 1;" @scrolltolower="onScrollTolower">
<list-item v-for="index in item_count" class="item">
<text >item-------<text>{{index}}</text></text>
</list-item>
</list-view>
</template>
<script>
export default {
data() {
return {
item_count: 20,
listViewElement: null as UniListViewElement|null
}
},
onReady() {
this.listViewElement = uni.getElementById<UniListViewElement>('listview')
},
methods: {
onScrollTolower(_: ScrollToLowerEvent) {
setTimeout(function(){
this.item_count += 20
}, 300)
},
//用于自动化测试
listViewScrollByY(y : number) {
this.listViewElement?.scrollBy(0, y)
}
}
}
</script>
<style>
.item {
padding: 15px;
margin: 5px 0;
background-color: #fff;
border-radius: 5px;
}
</style>
pages/component/list-view/list-view.uvue
浏览文件 @
4aeed860
...
@@ -169,6 +169,13 @@
...
@@ -169,6 +169,13 @@
<input-data defaultValue="#FFF" title="设置下拉刷新区域背景颜色" type="text"
<input-data defaultValue="#FFF" title="设置下拉刷新区域背景颜色" type="text"
@confirm="confirm_refresher_background_input"></input-data>
@confirm="confirm_refresher_background_input"></input-data>
<enum-data :items="size_enum" title="通过id位置跳转" @change="item_change_size_enum"></enum-data>
<enum-data :items="size_enum" title="通过id位置跳转" @change="item_change_size_enum"></enum-data>
<navigator url="/pages/component/list-view/list-view-multiplex" hover-class="none">
<button type="primary" class="button default-button">
list-view 对list-item复用测试
</button>
</navigator>
</view>
</view>
<!-- #ifdef APP -->
<!-- #ifdef APP -->
</scroll-view>
</scroll-view>
...
@@ -205,4 +212,8 @@
...
@@ -205,4 +212,8 @@
height: 45px;
height: 45px;
width: 100%;
width: 100%;
}
}
.button {
margin-top: 30rpx;
}
</style>
</style>
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录