| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <FlexCol>
- <StatusBarSpace backgroundColor="background.page" />
- <NavBar leftButton="custom" backgroundColor="background.page">
- <template #left>
- <Image
- src="https://mncdn.wenlvti.net/app_static/minnan/images/inhert/Title.png"
- mode="widthFix"
- :width="110"
- :innerStyle="{ marginLeft: '30rpx', marginTop: '30rpx' }"
- />
- </template>
- </NavBar>
- <Inhert />
- <Height :height="180" />
- <Tabbar :current="2" />
- </FlexCol>
- </template>
- <script setup lang="ts">
- import Tabbar from '@/common/components/tabs/Tabbar.vue';
- import { onShareTimeline, onShareAppMessage } from '@dcloudio/uni-app';
- import Inhert from './introduction/inhert.vue';
- import FlexCol from '@/components/layout/FlexCol.vue';
- import StatusBarSpace from '@/components/layout/space/StatusBarSpace.vue';
- import NavBar from '@/components/nav/NavBar.vue';
- import Image from '@/components/basic/Image.vue';
- import Height from '@/components/layout/space/Height.vue';
- onShareTimeline(() => {
- return {};
- })
- onShareAppMessage(() => {
- return {};
- })
- </script>
- <style lang="scss">
- </style>
|