fix(empty): support slot (#3563)

fix #3549
This commit is contained in:
rex 2020-08-26 18:59:56 +08:00 committed by GitHub
parent b7e184aa69
commit 7da66cfe95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 21 deletions

View File

@ -14,8 +14,6 @@
}
```
> Vant Weapp 1.0 版本开始支持此组件,升级方式参见[快速上手](#/quickstart)
## 代码演示
### 基础用法
@ -47,13 +45,6 @@ Empty 组件内置了多种占位图片类型,可以在不同业务场景下
image="https://img.yzcdn.cn/vant/custom-empty-image.png"
description="描述文字"
/>
<style>
.custom-image .van-empty__image {
width: 90px;
height: 90px;
}
</style>
```
### 底部内容
@ -68,10 +59,10 @@ Empty 组件内置了多种占位图片类型,可以在不同业务场景下
</van-empty>
<style>
.bottom-button {
width: 160px;
height: 40px;
}
.bottom-button {
width: 160px;
height: 40px;
}
</style>
```
@ -88,6 +79,6 @@ Empty 组件内置了多种占位图片类型,可以在不同业务场景下
| 名称 | 说明 |
| ----------- | -------------- |
| default | 自定义底部内容 |
| - | 自定义底部内容 |
| image | 自定义图标 |
| description | 自定义描述文字 |

View File

@ -13,18 +13,34 @@
width: @empty-image-size;
height: @empty-image-size;
&:empty {
display: none;
}
&__img {
width: 100%;
height: 100%;
}
}
&__image:not(:empty) + &__image {
display: none;
}
&__description {
margin-top: @empty-description-margin-top;
padding: @empty-description-padding;
color: @empty-description-color;
font-size: @empty-description-font-size;
line-height: @empty-description-line-height;
&:empty {
display: none;
}
}
&__description:not(:empty) + &__description {
display: none;
}
&__bottom {

View File

@ -1,15 +1,21 @@
<wxs src="../wxs/utils.wxs" module="utils" />
<view class=" custom-class van-empty">
<view class="custom-class van-empty">
<view class="van-empty__image">
<image wx:if="{{ imageUrl }}"
class="van-empty__image__img"
src="{{ imageUrl }}" />
<slot name="image"></slot>
</view>
<p class="van-empty__description">
<view class="van-empty__image">
<image wx:if="{{ imageUrl }}" class="van-empty__image__img" src="{{ imageUrl }}" />
</view>
<view class="van-empty__description">
<slot name="description"></slot>
</view>
<view class="van-empty__description">
{{ description }}
</p>
</view>
<view class="van-empty__bottom">
<slot></slot>
</view>
</view>
</view>