inhert.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <FlexCol>
  3. <StatusBarSpace backgroundColor="background.page" />
  4. <NavBar leftButton="custom" backgroundColor="background.page">
  5. <template #left>
  6. <Image
  7. src="https://mncdn.wenlvti.net/app_static/minnan/images/inhert/Title.png"
  8. mode="widthFix"
  9. :width="110"
  10. :innerStyle="{ marginLeft: '30rpx', marginTop: '30rpx' }"
  11. />
  12. </template>
  13. </NavBar>
  14. <Inhert />
  15. <Height :height="180" />
  16. <Tabbar :current="2" />
  17. </FlexCol>
  18. </template>
  19. <script setup lang="ts">
  20. import Tabbar from '@/common/components/tabs/Tabbar.vue';
  21. import { onShareTimeline, onShareAppMessage } from '@dcloudio/uni-app';
  22. import Inhert from './introduction/inhert.vue';
  23. import FlexCol from '@/components/layout/FlexCol.vue';
  24. import StatusBarSpace from '@/components/layout/space/StatusBarSpace.vue';
  25. import NavBar from '@/components/nav/NavBar.vue';
  26. import Image from '@/components/basic/Image.vue';
  27. import Height from '@/components/layout/space/Height.vue';
  28. onShareTimeline(() => {
  29. return {};
  30. })
  31. onShareAppMessage(() => {
  32. return {};
  33. })
  34. </script>
  35. <style lang="scss">
  36. </style>