sh-richtext.vue 736 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <view class="sh-richtext-box u-m-b-10" v-if="richText.content"><u-parse :html="richText.content"></u-parse></view>
  3. </template>
  4. <script>
  5. /**
  6. * 自定义之富文本卡片
  7. * @property {Number|String} id - 富文本id
  8. */
  9. export default {
  10. components: {},
  11. data() {
  12. return {
  13. richText: ''
  14. };
  15. },
  16. computed: {},
  17. props: {
  18. richId: {
  19. type: [Number, String],
  20. default: 0
  21. }
  22. },
  23. created() {
  24. this.richId && this.getRichText();
  25. },
  26. methods: {
  27. getRichText() {
  28. this.$http('common.richText', {
  29. id: this.richId
  30. }).then(res => {
  31. if (res.code === 1) {
  32. this.richText = res.data;
  33. }
  34. });
  35. }
  36. }
  37. };
  38. </script>
  39. <style lang="scss">
  40. .sh-richtext-box {
  41. background: #fff;
  42. padding: 30rpx;
  43. }
  44. </style>