46 lines
997 B
Vue
46 lines
997 B
Vue
<!-- 文章展示 -->
|
|
<template>
|
|
<s-layout :bgStyle="{ color: '#FFF' }" :title="state.title" class="set-wrap">
|
|
<view class="ss-p-30 richtext"><mp-html :content="state.content"></mp-html></view>
|
|
</s-layout>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { onLoad } from '@dcloudio/uni-app';
|
|
import { reactive } from 'vue';
|
|
// Article API removed with promotion module
|
|
|
|
const state = reactive({
|
|
title: '',
|
|
content: '',
|
|
});
|
|
|
|
async function getRichTextContent(id, title) {
|
|
// Article API has been removed as it was part of promotion module
|
|
state.title = title || '内容';
|
|
state.content = '暂无内容';
|
|
}
|
|
|
|
onLoad((options) => {
|
|
if (options.title) {
|
|
state.title = options.title;
|
|
uni.setNavigationBarTitle({
|
|
title: state.title,
|
|
});
|
|
}
|
|
getRichTextContent(options.id, options.title);
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.set-title {
|
|
margin: 0 30rpx;
|
|
}
|
|
|
|
:deep() {
|
|
image {
|
|
display: block;
|
|
}
|
|
}
|
|
</style>
|