You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
498 B
19 lines
498 B
<template>
|
|
<View long>
|
|
<CarouselWithIntro :data="cinema" />
|
|
</View>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
import { getCinemaInfo } from '@/http/api'
|
|
import View from '@/layouts/View.vue'
|
|
import CarouselWithIntro from '@/components/CarouselWithIntro/CarouselWithIntro.vue'
|
|
|
|
const cinema = ref({})
|
|
getCinemaInfo().then(({ data }) => {
|
|
cinema.value = { title: data.shopName, content: data.intro, fileList: data.materialList }
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|
|
|