treaty.vue 784 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <view class="content">
  3. <rich-text :nodes="couContent" ></rich-text>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. couContent: '',
  11. }
  12. },
  13. onLoad() {
  14. this.getDetailData()
  15. },
  16. methods: {
  17. getDetailData() {
  18. console.log('谢雨');
  19. uni.showLoading({
  20. title: '加载中'
  21. })
  22. let url = 'miniAppMyBMemberCar/userAgreement',
  23. params = {}
  24. this.$http(url, params, 'GET').then(res => {
  25. uni.hideLoading();
  26. if (res.data.contents) {
  27. this.couContent = res.data.contents.replace(/\<p/gi, '<p style="display: inline-block"');
  28. }
  29. })
  30. },
  31. }
  32. }
  33. </script>
  34. <style scoped>
  35. .content {
  36. background: #F4F5F7;
  37. min-height: 100vh;
  38. }
  39. </style>