空页面

This commit is contained in:
shijingjing
2023-03-20 08:58:04 +08:00
parent ec8bb6daf0
commit 7ccd4fccdf
6 changed files with 31 additions and 73 deletions

View File

@@ -1,42 +0,0 @@
<template>
<div class="AppEmpty">
<div class="card">
<img class="emptyImg" :src="emptyImg" :class="noPermit ? 'small-img' : ''">
<div class="emptyName" v-html="desName"></div>
</div>
</div>
</template>
<script>
export default {
name: 'AppEmpty',
props: {
img: { default: "./mdpi_img-jianshezhong.png" },
noPermit: Boolean,
desName: {
default: '丰收号',
type: String
}
},
}
</script>
<style lang="scss" scoped>
.AppEmpty {
width: 100vw;
height: 100vh;
padding: 32px;
.card {
width: 100%;
height: 80vh;
background: #FFF;
.emptyImg {
width: 300px;
height: 310px;
margin-top: 52px;
}
}
}
</style>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

View File

@@ -1,12 +1,12 @@
<template>
<div class="helpEachOther">
<AiEmpty img="./../AppEmpty/mdpi_img-jianshezhong.png"></AiEmpty>
<div class="AppHelpEachOther">
<AiEmpty :description="`丰收号 内容建设中…`" class="emptyWrap"></AiEmpty>
</div>
</template>
<script>
export default {
name: "helpEachOther",
name: "AppHelpEachOther",
appName: "家庭教育互助惠",
data() {
return {

View File

@@ -0,0 +1,25 @@
<template>
<div class="AppNewFarmer">
<div>njdaskjdjh bvxd,vl;,xdv</div>
<!-- <AiEmpty img="./../AppEmpty/mdpi_img-jianshezhong.png"></AiEmpty> -->
</div>
</template>
<script>
export default {
name: 'AppNewFarmer',
appName: '丰收新农人',
data() {
return {
}
},
methods: {},
}
</script>
<style>
</style>

View File

@@ -1,15 +1,13 @@
<template>
<div class="newFarmerBank">
<AppEmpty></AppEmpty>
<div class="AppNewFarmerBank">
<AiEmpty :description="`丰收号 内容建设中…`" class="emptyWrap"></AiEmpty>
</div>
</template>
<script>
import AppEmpty from '../AppEmpty/AppEmpty.vue'
export default {
name: "newFarmerBank",
name: "AppNewFarmerBank",
appName: "丰收银行",
components: { AppEmpty },
data() {
return {

View File

@@ -1,23 +0,0 @@
<template>
<div class="newFarmer">
<AiEmpty img="./../AppEmpty/mdpi_img-jianshezhong.png"></AiEmpty>
</div>
</template>
<script>
export default {
components: { AiEmpty },
name: 'newFarmer',
appName: '丰收新农人',
data() {
return {
}
},
}
</script>
<style>
</style>