初始化产品库

This commit is contained in:
aixianling
2021-11-15 10:29:05 +08:00
parent 8f735a4ffe
commit 5440b43b9c
306 changed files with 54508 additions and 3 deletions

View File

@@ -0,0 +1,28 @@
<template>
<section class="AiLoading">
<image :src="image"/>
<span>{{ tips }}</span>
</section>
</template>
<script>
export default {
name: "AiLoading",
props: {
tips: {default: "应用加载中"},
image: {default: "https://cdn.cunwuyun.cn/wxAdmin/img/message.png"}
}
}
</script>
<style lang="scss" scoped>
.AiLoading {
font-size: 32px;
color: #666;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
</style>