index.vue 530 B

123456789101112131415161718192021222324252627282930313233
  1. <script setup lang="ts">
  2. import Tabbar from '../components/tabbar.vue'
  3. const route = useRoute()
  4. definePage({
  5. name: 'film-movieList',
  6. islogin: false,
  7. style: {
  8. navigationBarTitleText: '电影演出',
  9. backgroundColorBottom: '#fff',
  10. },
  11. })
  12. // function handleItem() {
  13. // console.log('dianji')
  14. // }
  15. uni.setNavigationBarTitle({
  16. title: route.query?.title || '电影演出',
  17. })
  18. onMounted(() => {
  19. })
  20. </script>
  21. <template>
  22. <view class="" />
  23. <Tabbar :active="1" />
  24. </template>
  25. <style lang="scss" scoped>
  26. </style>