You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
1.8 KiB
82 lines
1.8 KiB
10 months ago
|
<template>
|
||
|
<view class="custom-class van-empty">
|
||
|
<view class="van-empty__image">
|
||
|
<slot name="image"></slot>
|
||
|
</view>
|
||
|
<view class="van-empty__image">
|
||
|
<image v-if="image" class="van-empty__image__img" :src="computed.imageUrl(image)" />
|
||
|
</view>
|
||
|
|
||
|
<view class="van-empty__description">
|
||
|
<slot name="description"></slot>
|
||
|
</view>
|
||
|
<view class="van-empty__description">
|
||
|
{{ description }}
|
||
|
</view>
|
||
|
|
||
|
<view class="van-empty__bottom">
|
||
|
<slot></slot>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
<script module="utils" lang="wxs" src="@/miniprogram_npm/@vant/weapp/wxs/utils.wxs"></script>
|
||
|
<script module="computed" lang="wxs" src="@/miniprogram_npm/@vant/weapp/empty/index.wxs"></script>
|
||
|
<script>
|
||
|
'use strict';
|
||
|
Object.defineProperty(exports, '__esModule', {
|
||
|
value: true
|
||
|
});
|
||
|
var component_1 = require('../common/component');
|
||
|
export default {
|
||
|
data() {
|
||
|
return {};
|
||
|
},
|
||
|
props: {
|
||
|
description: String,
|
||
|
image: {
|
||
|
type: String,
|
||
|
default: 'default'
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
<style>
|
||
|
@import '../common/index.css';
|
||
|
.van-empty {
|
||
|
align-items: center;
|
||
|
box-sizing: border-box;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
padding: 32px 0;
|
||
|
}
|
||
|
.van-empty__image {
|
||
|
height: 160px;
|
||
|
width: 160px;
|
||
|
}
|
||
|
.van-empty__image:empty {
|
||
|
display: none;
|
||
|
}
|
||
|
.van-empty__image__img {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
}
|
||
|
.van-empty__image:not(:empty) + .van-empty__image {
|
||
|
display: none;
|
||
|
}
|
||
|
.van-empty__description {
|
||
|
color: #969799;
|
||
|
font-size: 14px;
|
||
|
line-height: 20px;
|
||
|
margin-top: 16px;
|
||
|
padding: 0 60px;
|
||
|
}
|
||
|
.van-empty__description:empty,
|
||
|
.van-empty__description:not(:empty) + .van-empty__description {
|
||
|
display: none;
|
||
|
}
|
||
|
.van-empty__bottom {
|
||
|
margin-top: 24px;
|
||
|
}
|
||
|
</style>
|