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.
20 lines
473 B
20 lines
473 B
<template>
|
|
<View long>
|
|
<CarouselWithIntro :data="mall" />
|
|
</View>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
import { getMallInfoList } from '@/http/api'
|
|
import View from '@/layouts/View.vue'
|
|
import CarouselWithIntro from '@/components/CarouselWithIntro/CarouselWithIntro.vue'
|
|
|
|
const mall = ref({})
|
|
getMallInfoList().then(({ data }) => {
|
|
if (!data.title) data.title = '商场介绍'
|
|
mall.value = data
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|
|
|