1234567891011121314151617181920212223242526272829 |
- <template>
- <view class="main">
- <!-- <rich-text :nodes="nodeEl"></rich-text> -->
- <u-parse :html="nodeEl"></u-parse>
- <view class="cu-tabbar-height"></view>
- <view class="cu-tabbar-height"></view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- nodeEl:''
- }
- },
- onLoad(op) {
- this.nodeEl = decodeURIComponent(op.data)
- }
- }
- </script>
- <style scoped>
- .main {
- min-height: 100vh;
- padding-left: 20rpx;
- padding-right: 20rpx;
- }
- </style>
|