1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <view class="content">
- <u-parse :content="data"></u-parse>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- data: ''
- }
- },
- onLoad(options) {
- that = this
- if(options.title) {
- uni.setNavigationBarTitle({
- title: options.title
- })
- }
- that.data = uni.getStorageSync('xieyi')
- },
- methods: {
-
- },
- }
- </script>
- <style lang="scss" scoped>
- .content {
- padding: 20rpx;
- }
- </style>
|