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.
47 lines
1.0 KiB
47 lines
1.0 KiB
<template>
|
|
<s-layout class="set-wrap" :title="state.title" :bgStyle="{ color: '#FFF' }">
|
|
<view class="ss-p-30"><mp-html class="richtext" :content="state.content"></mp-html></view>
|
|
</s-layout>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { onLoad } from '@dcloudio/uni-app';
|
|
import { reactive } from 'vue';
|
|
import sheep from '@/sheep';
|
|
|
|
const state = reactive({
|
|
title: '',
|
|
content: '',
|
|
});
|
|
|
|
async function getRichTextContent(id) {
|
|
const { code, data } = await sheep.$api.data.richtext(id);
|
|
if (code === 1) {
|
|
state.content = data.content;
|
|
if (state.title === '') {
|
|
state.title = data.title;
|
|
uni.setNavigationBarTitle({
|
|
title: state.title,
|
|
});
|
|
}
|
|
}
|
|
}
|
|
onLoad((options) => {
|
|
if (options.title) {
|
|
state.title = options.title;
|
|
uni.setNavigationBarTitle({
|
|
title: state.title,
|
|
});
|
|
}
|
|
getRichTextContent(options.id);
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.set-title {
|
|
margin: 0 30rpx;
|
|
}
|
|
|
|
.richtext {
|
|
}
|
|
</style>
|
|
|