mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
parent
b7e184aa69
commit
7da66cfe95
@ -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 | 自定义描述文字 |
|
||||||
|
@ -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 {
|
||||||
|
@ -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>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user