首次提交
This commit is contained in:
34
components/Empty.vue
Normal file
34
components/Empty.vue
Normal file
@@ -0,0 +1,34 @@
|
||||
<template>
|
||||
<!-- 空 -->
|
||||
<div class="img-box">
|
||||
<div class="img">
|
||||
<image :src="baseUrl+'static/img/w.png'"></image>
|
||||
</div>
|
||||
<p>这里没有相关记录哦~</p>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
name: 'Empty',
|
||||
data() {
|
||||
return {
|
||||
baseUrl: this.$baseURL
|
||||
}
|
||||
},
|
||||
|
||||
}
|
||||
</script>
|
||||
<style scoped>
|
||||
/* 空 */
|
||||
.img-box {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
color: rgb(148, 147, 147);
|
||||
font-size: 14px;
|
||||
padding-bottom: 20%;
|
||||
}
|
||||
.img {
|
||||
width: 30%;
|
||||
margin: 30% auto 3%;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user