richtext.vue 730 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!-- 富文本 -->
  2. <template>
  3. <view class="rich-wrap">
  4. <view class="content_box"><u-parse :html="richText.content"></u-parse></view>
  5. </view>
  6. </template>
  7. <script>
  8. import Auth from '@/shopro/permission/index.js';
  9. export default {
  10. components: {},
  11. data() {
  12. return {
  13. richText: ''
  14. };
  15. },
  16. computed: {},
  17. onLoad() {
  18. this.$Route.query.id && this.getRichText();
  19. },
  20. methods: {
  21. getRichText() {
  22. this.$http('common.richText', {
  23. id: this.$Route.query.id
  24. }).then(res => {
  25. if (res.code === 1) {
  26. this.richText = res.data;
  27. uni.setNavigationBarTitle({
  28. title: res.data.title
  29. });
  30. }
  31. });
  32. }
  33. }
  34. };
  35. </script>
  36. <style lang="scss">
  37. .content_box {
  38. background: #fff;
  39. padding: 30rpx;
  40. }
  41. </style>