27 lines
641 B
Vue
27 lines
641 B
Vue
|
|
<template>
|
||
|
|
<view class="customer-service">
|
||
|
|
<view v-for="(item, index) in state.pages" :key="index">
|
||
|
|
<template v-if="item.name == 'customer-service'">
|
||
|
|
<w-customer-service :content="item.content" :styles="item.styles" />
|
||
|
|
</template>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup lang="ts">
|
||
|
|
import { getDecorate } from '@/api/shop'
|
||
|
|
import { reactive } from 'vue'
|
||
|
|
const state = reactive<{
|
||
|
|
pages: any[]
|
||
|
|
}>({
|
||
|
|
pages: []
|
||
|
|
})
|
||
|
|
const getData = async () => {
|
||
|
|
const data = await getDecorate({ id: 3 })
|
||
|
|
state.pages = JSON.parse(data.pages)
|
||
|
|
}
|
||
|
|
getData()
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style></style>
|