index.vue 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <route lang="json">
  2. {
  3. "style": {
  4. "navigationStyle": "custom",
  5. "navigationBarTitleText": "1分钟快速了解筑巢荟"
  6. }
  7. }
  8. </route>
  9. <script setup lang="ts">
  10. import NavbarEvo from '@/components/navbar-evo.vue'
  11. const imgs = ref([
  12. 'https://image.zhuchaohui.com/zhucaohui/498f4e8c68e554890c7ac23e684044d238fcb46568cf15b652da8827279d24a3.png',
  13. 'https://image.zhuchaohui.com/zhucaohui/1e818f8ea7ede66cee4b31cd114c054b950e5992407e8c145f6d823770b204b2.png',
  14. 'https://image.zhuchaohui.com/zhucaohui/45bb68f12d3eb9b4f70eb46769a0ab1adeb55d8242a23c45001fe56986b30a36.png',
  15. 'https://image.zhuchaohui.com/zhucaohui/9d6713cc39aeb20faae4f374bf92764252ee28f38de2540ab02e1a9d7496bdcb.png',
  16. ])
  17. onShareAppMessage(() => ({
  18. title: '1分钟快速了解筑巢荟',
  19. }))
  20. onShareTimeline(() => ({
  21. title: '1分钟快速了解筑巢荟',
  22. }))
  23. </script>
  24. <template>
  25. <div>
  26. <NavbarEvo dark transparent title="1分钟快速了解筑巢荟"></NavbarEvo>
  27. <template v-for="(it, i) in imgs" :key="i">
  28. <wd-img width="100%" :src="it" mode="widthFix" custom-class="vertical-bottom"></wd-img>
  29. </template>
  30. </div>
  31. </template>