Files
dvcp_v2_wxcp_app/src/components/AiEmpty.vue

42 lines
725 B
Vue
Raw Normal View History

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