22 lines
296 B
Vue
22 lines
296 B
Vue
|
<route lang="json5" type="page">
|
||
|
{
|
||
|
layout: 'default',
|
||
|
style: {
|
||
|
navigationStyle: 'custom',
|
||
|
navigationBarTitleText: '计划财务 ',
|
||
|
},
|
||
|
}
|
||
|
</route>
|
||
|
<template>
|
||
|
<PageLayout :navbarShow="false">
|
||
|
<view>
|
||
|
财务管理
|
||
|
</view>
|
||
|
</PageLayout>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|