Files
dvcp_v2_wxcp_app/src/components/AiEmpty.vue
2021-11-23 17:16:13 +08:00

42 lines
731 B
Vue

<template>
<div class="emptyWrap">
<img class="emptyImg" src="https://cdn.cunwuyun.cn/dvcp/h5/Empty.png">
<div class="emptyText">{{ description }}</div>
</div>
</template>
<script>
export default {
name: "AiEmpty",
props: {
description: {
default: '暂无相关信息',
type: String
}
}
}
</script>
<style lang="scss" scoped>
.emptyWrap {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
.emptyImg {
width: 400 rpx;
height: 240 rpx;
margin-top: 112px;
}
.emptyText {
font-size: 29 rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: rgba(183, 183, 183, 1);
}
}
</style>