agreement.vue 480 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view class="main">
  3. <!-- <rich-text :nodes="nodeEl"></rich-text> -->
  4. <u-parse :html="nodeEl"></u-parse>
  5. <view class="cu-tabbar-height"></view>
  6. <view class="cu-tabbar-height"></view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. nodeEl:''
  14. }
  15. },
  16. onLoad(op) {
  17. this.nodeEl = decodeURIComponent(op.data)
  18. }
  19. }
  20. </script>
  21. <style scoped>
  22. .main {
  23. min-height: 100vh;
  24. padding-left: 20rpx;
  25. padding-right: 20rpx;
  26. }
  27. </style>