31 lines
418 B
Vue
31 lines
418 B
Vue
|
|
<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>
|