Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
1d9232f8
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看板
提交
1d9232f8
编写于
7月 26, 2024
作者:
H
hdx
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test(createSelectorQuery): 新增组件多根节点测试
上级
4c533db4
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
35 addition
and
9 deletion
+35
-9
pages/API/create-selector-query/create-selector-query.test.js
...s/API/create-selector-query/create-selector-query.test.js
+6
-0
pages/API/create-selector-query/create-selector-query.uvue
pages/API/create-selector-query/create-selector-query.uvue
+27
-7
pages/API/create-selector-query/selector-query-child-multi.uvue
...API/create-selector-query/selector-query-child-multi.uvue
+2
-2
未找到文件。
pages/API/create-selector-query/create-selector-query.test.js
浏览文件 @
1d9232f8
...
...
@@ -58,6 +58,12 @@ describe('nodes-info', () => {
const
child
=
await
page
.
$
(
'
.node-child
'
)
const
childData
=
await
child
.
data
()
expect
(
childData
.
top
>
100
).
toBe
(
true
)
})
it
(
'
multi-child
'
,
async
()
=>
{
const
pageData
=
await
page
.
data
()
expect
(
pageData
.
selectCount
).
toBe
(
1
)
expect
(
pageData
.
selectAllCount
).
toBe
(
2
)
})
// #ifdef APP
...
...
pages/API/create-selector-query/create-selector-query.uvue
浏览文件 @
1d9232f8
<template>
<template>
<!-- #ifdef APP -->
<scroll-view class="page-scroll-view">
<!-- #endif -->
<view class="page" id="page">
<page-head :title="title"></page-head>
<button class="btn btn-get-node-info" @click="getNodeInfo">getNodeInfo</button>
...
...
@@ -35,12 +38,20 @@
</view>
</view>
</view>
<node-child class="node-child"></node-child>
</view>
<node-child class="node-child"></node-child>
<text>子组件多根节点</text>
<multi-child ref="multi-child" id="multi-child"></multi-child>
<text>子组件多根节点(仅测试,用于验证查询是否超出范围)</text>
<multi-child id="multi-child-2"></multi-child>
</view>
<!-- #ifdef APP -->
</scroll-view>
<!-- #endif -->
</template>
<script>
import nodeChild from './nodes-info-child.uvue'
import nodeChild from './nodes-info-child.uvue'
import multiChild from './selector-query-child-multi.uvue'
type NodeInfoType = {
left : number | null,
...
...
@@ -53,7 +64,8 @@
export default {
components: {
nodeChild
nodeChild,
multiChild
},
data() {
return {
...
...
@@ -62,8 +74,17 @@
// 仅用于自动化测试
rootNodeInfo: null as NodeInfoType | null,
//供自动化测试使用
// resizeRectValid: false
// resizeRectValid: false
// TODO
selectCount: 0,
selectAllCount: 0,
}
},
onReady() {
const instance = (this.$refs['multi-child'] as ComponentPublicInstance)
this.selectCount = instance.$data['selectCount'] as Number
this.selectAllCount = instance.$data['selectAllCount'] as Number
console.log('selectCount', selectCount, selectAllCount)
},
onResize() {
//供自动化测试使用
...
...
@@ -130,7 +151,6 @@
<style>
.page {
padding: 15px;
flex: 1;
}
.btn {
...
...
pages/API/create-selector-query/selector-query-child-multi.uvue
浏览文件 @
1d9232f8
...
...
@@ -26,13 +26,13 @@
},
mounted() {
uni.createSelectorQuery().in(this).select('.selector-query-view').boundingClientRect().exec((ret) => {
this.text1 = JSON.stringify(ret)
this.text1 = JSON.stringify(ret
, null, 2
)
if (ret.length == 1) {
this.selectCount = ret.length
}
})
uni.createSelectorQuery().in(this).selectAll('.selector-query-view').boundingClientRect().exec((ret) => {
this.text2 = JSON.stringify(ret)
this.text2 = JSON.stringify(ret
, null, 2
)
if (ret.length == 1) {
this.selectAllCount = (ret[0] as NodeInfo[]).length
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录