小程序产品库完成

This commit is contained in:
aixianling
2022-02-14 17:25:54 +08:00
parent cb5f434edb
commit 8d2905428e
145 changed files with 22037 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
<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;
padding-bottom: 80px;
.emptyImg {
width: 400px;
height: 240px;
margin-top: 52px;
}
.emptyText {
font-size: 29px;
font-weight: 400;
color: rgba(183, 183, 183, 1);
}
}
</style>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB