agreement.vue 502 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view class="content">
  3. <u-parse :content="data"></u-parse>
  4. </view>
  5. </template>
  6. <script>
  7. import $api from '@/static/js/api.js'
  8. var that = ''
  9. export default {
  10. data() {
  11. return {
  12. data: ''
  13. }
  14. },
  15. onLoad(options) {
  16. that = this
  17. if(options.title) {
  18. uni.setNavigationBarTitle({
  19. title: options.title
  20. })
  21. }
  22. that.data = uni.getStorageSync('xieyi')
  23. },
  24. methods: {
  25. },
  26. }
  27. </script>
  28. <style lang="scss" scoped>
  29. .content {
  30. padding: 20rpx;
  31. }
  32. </style>