Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
551ee7c6
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看板
提交
551ee7c6
编写于
6月 30, 2023
作者:
Y
yurj26
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(checkbox): add test
上级
ee8a872c
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
89 addition
and
10 deletion
+89
-10
pages/component/checkbox/checkbox.test.js
pages/component/checkbox/checkbox.test.js
+68
-0
pages/component/checkbox/checkbox.uvue
pages/component/checkbox/checkbox.uvue
+21
-10
未找到文件。
pages/component/checkbox/checkbox.test.js
0 → 100644
浏览文件 @
551ee7c6
function
getData
(
key
=
''
)
{
return
new
Promise
(
async
(
resolve
,
reject
)
=>
{
const
data
=
await
page
.
data
()
resolve
(
key
?
data
[
key
]
:
data
)
})
}
let
page
beforeAll
(
async
()
=>
{
page
=
await
program
.
reLaunch
(
'
/pages/component/checkbox/checkbox
'
)
await
page
.
waitFor
(
1000
)
})
describe
(
'
Checkbox.uvue
'
,
()
=>
{
it
(
'
change
'
,
async
()
=>
{
const
cb
=
await
page
.
$
(
'
.cb
'
)
const
cb1
=
await
page
.
$
(
'
.cb1
'
)
const
cb2
=
await
page
.
$
(
'
.cb2
'
)
expect
(
await
getData
(
'
value
'
)).
toEqual
([])
await
cb1
.
tap
()
expect
(
await
getData
(
'
value
'
)).
toEqual
([
"
cb
"
,
"
cb1
"
])
await
cb
.
tap
()
expect
(
await
getData
(
'
value
'
)).
toEqual
([
"
cb1
"
])
await
cb2
.
tap
()
expect
(
await
getData
(
'
value
'
)).
toEqual
([
"
cb1
"
])
})
it
(
'
length
'
,
async
()
=>
{
const
checkboxGroupElements
=
await
page
.
$$
(
'
.checkbox-group
'
)
expect
(
checkboxGroupElements
.
length
).
toBe
(
3
)
const
checkboxElements
=
await
page
.
$$
(
'
.checkbox
'
)
expect
(
checkboxElements
.
length
).
toBe
(
11
)
})
it
(
'
text
'
,
async
()
=>
{
const
cb
=
await
page
.
$
(
'
.cb
'
)
expect
(
await
cb
.
text
()).
toEqual
(
'
选中
'
)
await
page
.
setData
({
text
:
'
checked
'
})
expect
(
await
cb
.
text
()).
toEqual
(
'
checked
'
)
})
it
(
'
checked
'
,
async
()
=>
{
const
cb
=
await
page
.
$
(
'
.cb
'
)
expect
(
await
cb
.
property
(
'
checked
'
)).
toBe
(
true
)
await
page
.
setData
({
checked
:
false
})
await
page
.
waitFor
(
500
)
expect
(
await
cb
.
property
(
'
checked
'
)).
toBe
(
false
)
})
it
(
'
color
'
,
async
()
=>
{
const
cb
=
await
page
.
$
(
'
.cb
'
)
expect
(
await
cb
.
property
(
'
color
'
)).
toBe
(
'
#007aff
'
)
await
page
.
setData
({
color
:
'
#63acfc
'
})
await
page
.
waitFor
(
500
)
expect
(
await
cb
.
property
(
'
color
'
)).
toBe
(
'
#63acfc
'
)
})
it
(
'
disabled
'
,
async
()
=>
{
const
cb
=
await
page
.
$
(
'
.cb2
'
)
expect
(
await
cb
.
property
(
'
disabled
'
)).
toBe
(
true
)
await
page
.
setData
({
disabled
:
false
})
await
page
.
waitFor
(
500
)
expect
(
await
cb
.
property
(
'
disabled
'
)).
toBe
(
false
)
})
})
\ No newline at end of file
pages/component/checkbox/checkbox.uvue
浏览文件 @
551ee7c6
...
...
@@ -8,9 +8,11 @@
</text>
</view>
<view>
<checkbox-group class="uni-flex uni-row">
<checkbox value="cb1" :checked="true" style="margin-right: 30rpx;">选中</checkbox>
<checkbox value="cb">未选中</checkbox>
<checkbox-group class="uni-flex uni-row checkbox-group" @change="testChange">
<checkbox value="cb" :checked="checked" :color="color" style="margin-right: 30rpx;"
class="checkbox cb">{{text}}</checkbox>
<checkbox value="cb1" style="margin-right: 30rpx;" class="checkbox cb1">未选中</checkbox>
<checkbox value="cb2" :disabled="disabled" class="checkbox cb2">禁用</checkbox>
</checkbox-group>
</view>
<view class="uni-title uni-common-mt">
...
...
@@ -19,11 +21,11 @@
</text>
</view>
<view>
<checkbox-group class="uni-flex uni-row">
<checkbox-group class="uni-flex uni-row
checkbox-group
">
<checkbox value="cb1" :checked="true" color="#FFCC33"
style="transform:scale(0.7); margin-right: 30rpx;">选中
style="transform:scale(0.7); margin-right: 30rpx;"
class="checkbox"
>选中
</checkbox>
<checkbox value="cb" color="#FFCC33" style="transform:scale(0.7)">未选中</checkbox>
<checkbox value="cb" color="#FFCC33" style="transform:scale(0.7)"
class="checkbox"
>未选中</checkbox>
</checkbox-group>
</view>
</view>
...
...
@@ -39,9 +41,9 @@
</view>
</view>
<view class="uni-list">
<checkbox-group @change="checkboxChange">
<checkbox class="uni-list-cell uni-list-cell-pd
" v-for="(item, index) in items" :key="item.value
"
:value="item.value" :checked="item.checked"
<checkbox-group @change="checkboxChange"
class="checkbox-group"
>
<checkbox class="uni-list-cell uni-list-cell-pd
checkbox" v-for="(item, index) in items
"
:
key="item.value" :
value="item.value" :checked="item.checked"
:class="index < items.length - 1 ? 'uni-list-cell-line': ''">
{{item.name}}
</checkbox>
...
...
@@ -89,7 +91,13 @@
name: '法国',
checked: false
}
] as ItemType[]
] as ItemType[],
text: '选中',
value: [] as string[],
disabled: true,
checked: true,
color: '#007aff'
}
},
methods: {
...
...
@@ -104,6 +112,9 @@
item.checked = false
}
}
},
testChange: function (e : CheckboxGroupChangeEvent) {
this.value = e.detail.value
}
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录