richtext.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!-- 文章展示 -->
  2. <template>
  3. <s-layout class="set-wrap" :title="state.title" :bgStyle="{ color: '#FFF' }">
  4. <view class="ss-p-30">
  5. <mp-html class="richtext" :content="state.content" />
  6. </view>
  7. </s-layout>
  8. </template>
  9. <script setup>
  10. import { onLoad } from '@dcloudio/uni-app';
  11. import { reactive } from 'vue';
  12. import ArticleApi from '@/sheep/api/promotion/article';
  13. const state = reactive({
  14. title: '',
  15. content: '',
  16. });
  17. async function getRichTextContent(id, title) {
  18. const { code, data } = await ArticleApi.getArticle(id, title);
  19. if (code !== 0) {
  20. return;
  21. }
  22. state.content = data.content;
  23. // 标题不一致时,修改标题
  24. if (state.title !== data.title) {
  25. state.title = data.title;
  26. uni.setNavigationBarTitle({
  27. title: state.title,
  28. });
  29. }
  30. }
  31. onLoad((options) => {
  32. if (options.title) {
  33. state.title = options.title;
  34. uni.setNavigationBarTitle({
  35. title: state.title,
  36. });
  37. }
  38. getRichTextContent(options.id, options.title);
  39. });
  40. </script>
  41. <style lang="scss" scoped>
  42. .set-title {
  43. margin: 0 30rpx;
  44. }
  45. .richtext {
  46. }
  47. </style>