1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| <template>
| <div class="min-h-30px" v-html="article?.content"></div>
| </template>
| <script setup lang="ts">
| import { PromotionArticleProperty } from './config'
| import * as ArticleApi from '@/api/mall/promotion/article/index'
|
| /** 营销文章 */
| defineOptions({ name: 'PromotionArticle' })
| // 定义属性
| const props = defineProps<{ property: PromotionArticleProperty }>()
| // 商品列表
| const article = ref<ArticleApi.ArticleVO>()
| watch(
| () => props.property.id,
| async () => {
| if (props.property.id) {
| article.value = await ArticleApi.getArticle(props.property.id)
| }
| },
| {
| immediate: true
| }
| )
| </script>
|
| <style scoped lang="scss"></style>
|
|