Files
dvcp_v2_wxcp_app/src/components/AiEmpty.vue

40 lines
859 B
Vue
Raw Normal View History

2021-11-15 10:29:05 +08:00
<template>
<div class="emptyWrap">
2021-11-23 11:40:57 +08:00
<img class="emptyImg" src="https://cdn.cunwuyun.cn/dvcp/h5/Empty.png">
2021-11-15 10:29:05 +08:00
<div class="emptyText">{{description}}</div>
</div>
</template>
<script>
export default {
name:"emptyData",
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: 400rpx;
height: 240rpx;
margin-top: 112px;
}
.emptyText{
font-size:29rpx;
font-family:PingFangSC-Regular,PingFang SC;
font-weight:400;
color:rgba(183,183,183,1);
}
}
</style>