| 123456789101112131415161718192021222324252627282930313233 |
- <script setup lang="ts">
- import Tabbar from '../components/tabbar.vue'
- const route = useRoute()
- definePage({
- name: 'film-movieList',
- islogin: false,
- style: {
- navigationBarTitleText: '电影演出',
- backgroundColorBottom: '#fff',
- },
- })
- // function handleItem() {
- // console.log('dianji')
- // }
- uni.setNavigationBarTitle({
- title: route.query?.title || '电影演出',
- })
- onMounted(() => {
- })
- </script>
- <template>
- <view class="" />
- <Tabbar :active="1" />
- </template>
- <style lang="scss" scoped>
- </style>
|