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" image="https://img.yzcdn.cn/vant/custom-empty-image.png"
description="描述文字" description="描述文字"
/> />
<style>
.custom-image .van-empty__image {
width: 90px;
height: 90px;
}
</style>
``` ```
### 底部内容 ### 底部内容
@ -68,10 +59,10 @@ Empty 组件内置了多种占位图片类型,可以在不同业务场景下
</van-empty> </van-empty>
<style> <style>
.bottom-button { .bottom-button {
width: 160px; width: 160px;
height: 40px; height: 40px;
} }
</style> </style>
``` ```
@ -88,6 +79,6 @@ Empty 组件内置了多种占位图片类型,可以在不同业务场景下
| 名称 | 说明 | | 名称 | 说明 |
| ----------- | -------------- | | ----------- | -------------- |
| default | 自定义底部内容 | | - | 自定义底部内容 |
| image | 自定义图标 | | image | 自定义图标 |
| description | 自定义描述文字 | | description | 自定义描述文字 |

View File

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

View File

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