第一提交

This commit is contained in:
caolc
2023-04-26 14:03:20 +08:00
commit ed478c7402
383 changed files with 67118 additions and 0 deletions

32
components/Empty.vue Normal file
View File

@@ -0,0 +1,32 @@
<template>
<!-- -->
<view class="img-box padding-lg margin-lg text-center">
<view class="bg-img margin radius flex align-center" :style="'background-image: url('+mainURL+'kong.png)'">
</view>
<text>这里没有相关记录哦~</text>
</view>
</template>
<script>
export default {
name: 'Empty',
data() {
return {
mainURL: this.global.mainURL,
}
},
}
</script>
<style scoped>
/* 空 */
.img-box {
color: rgb(148, 147, 147);
font-size: 14px;
}
.bg-img{
min-height: 450rpx;
min-width: 200upx;
}
</style>