123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <view>
- <!-- 标题栏 -->
- <u-navbar
- :is-back="true"
- back-icon-color="#2af"
- :border-bottom="true"
- back-text="返回"
- :back-text-style="{color:'#2af'}"
- :title="title"
- >
- </u-navbar>
- <view>
-
- </view>
- </view>
- </template>
- <script>
- import UNavbar from '@/components/uni-nav-bar/uni-nav-bar.vue';
- export default {
- components:{
- UNavbar,
- },
- data() {
- return {
- iniData:{
- name:'固定资产贷款',
- label:'固定资产贷款'
- },
- title:'更多信息'
- }
- },
- onLoad(data) {
- this.iniData = data
- },
- methods: {
-
- }
- }
- </script>
- <style>
- </style>
|