agreement.vue 486 B

123456789101112131415161718192021222324252627282930313233
  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('agreement')
  23. },
  24. methods: {
  25. },
  26. }
  27. </script>
  28. <style lang="scss" scoped>
  29. .content {}
  30. </style>