Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uvue
提交
94d7ba9b
H
hello-uvue
项目概览
DCloud
/
hello-uvue
通知
362
Star
3
Fork
8
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello-uvue
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
94d7ba9b
编写于
7月 01, 2023
作者:
H
hdx
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
v-show: add screenshot test
上级
479473ee
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
25 addition
and
16 deletion
+25
-16
pages/v-show/v-show.test.js
pages/v-show/v-show.test.js
+11
-9
pages/v-show/v-show.uvue
pages/v-show/v-show.uvue
+12
-4
pages/v-slot/counter.uvue
pages/v-slot/counter.uvue
+2
-3
未找到文件。
pages/v-show/v-show.test.js
浏览文件 @
94d7ba9b
...
...
@@ -7,28 +7,30 @@ describe('v-show', () => {
await
page
.
waitFor
(
500
)
})
it
(
'
style::display
'
,
async
()
=>
{
const
element
=
await
page
.
$
(
'
.
hello
'
)
const
element
=
await
page
.
$
(
'
.
v-show-content
'
)
expect
(
await
element
.
style
(
'
display
'
)).
toBe
(
'
flex
'
)
const
toggle
=
await
page
.
$
(
'
.toggle
'
)
const
toggle
=
await
page
.
$
(
'
.
btn-
toggle
'
)
await
toggle
.
tap
()
expect
(
await
element
.
style
(
'
display
'
)).
toBe
(
'
none
'
)
await
toggle
.
tap
()
expect
(
await
element
.
style
(
'
display
'
)).
toBe
(
'
flex
'
)
})
it
(
'
screenshot
'
,
async
()
=>
{
const
toggle
=
await
page
.
$
(
'
.toggle
'
)
const
toggle
=
await
page
.
$
(
'
.
btn-
toggle
'
)
const
element
=
await
page
.
$
(
'
.hello
'
)
await
program
.
screenshot
({
path
:
"
static/v-show/screenshot-show1.png
"
})
const
image1
=
await
program
.
screenshot
()
expect
(
image1
).
toMatchSnapshot
()
await
toggle
.
tap
()
await
page
.
waitFor
(
20
)
const
image2
=
await
program
.
screenshot
()
expect
(
image2
).
toMatchSnapshot
()
await
toggle
.
tap
()
await
p
rogram
.
screenshot
({
path
:
"
static/v-show/screenshot-show2.png
"
}
)
await
p
age
.
waitFor
(
20
)
const
image3
=
await
program
.
screenshot
()
expect
(
image3
).
toMatchSnapshot
(
)
})
})
\ No newline at end of file
pages/v-show/v-show.uvue
浏览文件 @
94d7ba9b
<template>
<view class="page">
<view class="split-title">button:click</view>
<button class="toggle" @click="onShowOrHide">show/hide</button>
<view class="hello" v-show="show">hello</view>
<button class="btn-show" @click="onClickShow">show</button>
<button class="btn-hide" @click="onClickHide">hide</button>
<button class="btn-toggle" @click="onClickShowOrHide">show/hide</button>
<view class="v-show-content" v-show="show">hello-v-show</view>
</view>
</template>
...
...
@@ -14,7 +16,13 @@
}
},
methods: {
onShowOrHide() {
onClickShow() {
this.show = true
},
onClickHide() {
this.show = false
},
onClickShowOrHide() {
this.show = !this.show
}
}
...
...
@@ -22,4 +30,4 @@
</script>
<style>
</style>
</style>
\ No newline at end of file
pages/v-slot/counter.uvue
浏览文件 @
94d7ba9b
<template>
<view>
<slot :loading="loading" :error="
errorM
essage" />
<slot :loading="loading" :error="
m
essage" />
</view>
</template>
...
...
@@ -15,8 +15,7 @@
data() {
return {
loading: false,
hasMore: false,
errorMessage: ''
message: ''
}
},
created() {
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录