xieyi.vue 818 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. index: ''
  14. }
  15. },
  16. onLoad(options) {
  17. that = this
  18. if(options.title) {
  19. uni.setNavigationBarTitle({
  20. title: options.title
  21. })
  22. }
  23. that.index = options.data
  24. that.getData()
  25. },
  26. methods: {
  27. getData() {
  28. $api.req({
  29. url: '/data/api.business.Login/getconfigset'
  30. }, function(res) {
  31. if (res.code == 1) {
  32. if(that.index == 0) {
  33. that.data = res.data.shop_service_agreement
  34. } else {
  35. that.data = res.data.shop_protection_policy
  36. }
  37. }
  38. })
  39. }
  40. },
  41. }
  42. </script>
  43. <style lang="scss" scoped>
  44. .content {
  45. padding: 20rpx;
  46. }
  47. </style>