Files
dvcp_v2_wechat_app/src/project/fengdu/newFarmerBank/newFarmerBank.vue

31 lines
418 B
Vue
Raw Normal View History

2023-03-20 08:32:07 +08:00
<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>