空白页面
This commit is contained in:
42
src/project/fengdu/AppEmpty/AppEmpty.vue
Normal file
42
src/project/fengdu/AppEmpty/AppEmpty.vue
Normal file
@@ -0,0 +1,42 @@
|
||||
<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>
|
||||
BIN
src/project/fengdu/AppEmpty/mdpi_img-jianshezhong.png
Normal file
BIN
src/project/fengdu/AppEmpty/mdpi_img-jianshezhong.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 60 KiB |
@@ -20,10 +20,10 @@
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<img class="card-left" src="./img/img-fengshouyinhang.png" alt="">
|
||||
<img class="card-left" src="./img/img-fengshouyinhang.png" @click="$linkTo('/mods/newFarmerBank/newFarmerBank')" alt="">
|
||||
<div class="card-right">
|
||||
<img src="./img/img-fengduxinnongren.png" alt="">
|
||||
<img src="./img/ic-jiaoyuhuzhu.png" alt="">
|
||||
<img src="./img/img-fengduxinnongren.png" alt="" @click="$linkTo('./mods/newFarmer/newFarmer')">
|
||||
<img src="./img/ic-jiaoyuhuzhu.png" alt="" @click="$linkTo('./mods/helpEachOther/helpEachOther')">
|
||||
</div>
|
||||
</div>
|
||||
<AiLogin ref="login"/>
|
||||
|
||||
22
src/project/fengdu/helpEachOther/helpEachOther.vue
Normal file
22
src/project/fengdu/helpEachOther/helpEachOther.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div class="helpEachOther">
|
||||
<AiEmpty img="./../AppEmpty/mdpi_img-jianshezhong.png"></AiEmpty>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "helpEachOther",
|
||||
appName: "家庭教育互助惠",
|
||||
data() {
|
||||
return {
|
||||
|
||||
}
|
||||
},
|
||||
onShow() {}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
23
src/project/fengdu/newFarmer/newFarmer.vue
Normal file
23
src/project/fengdu/newFarmer/newFarmer.vue
Normal file
@@ -0,0 +1,23 @@
|
||||
<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>
|
||||
31
src/project/fengdu/newFarmerBank/newFarmerBank.vue
Normal file
31
src/project/fengdu/newFarmerBank/newFarmerBank.vue
Normal file
@@ -0,0 +1,31 @@
|
||||
<template>
|
||||
<div class="newFarmerBank">
|
||||
<AppEmpty></AppEmpty>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AppEmpty from '../AppEmpty/AppEmpty.vue'
|
||||
export default {
|
||||
name: "newFarmerBank",
|
||||
appName: "丰收银行",
|
||||
components: { AppEmpty },
|
||||
data() {
|
||||
return {
|
||||
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
},
|
||||
onShow() {
|
||||
uni.setNavigationBarTitle({
|
||||
title: '建设中'
|
||||
});
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user