rimInfo.vue 390 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view class="container">
  3. <mp-html :content="desc" />
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. desc: ''
  11. }
  12. },
  13. onLoad(options) {
  14. this.desc = JSON.parse(decodeURIComponent(options.desc))
  15. console.log(this.desc)
  16. }
  17. }
  18. </script>
  19. <style lang="scss" scoped>
  20. .container {
  21. padding: 0 20rpx;
  22. min-height: 100vh;
  23. background-color: #fff;
  24. }
  25. </style>