agreement.vue 771 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <view class="agreement">
  3. <view class="con" v-html="data"></view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. data: ''
  11. }
  12. },
  13. onLoad(option) {
  14. this.configInfo()
  15. },
  16. methods: {
  17. configInfo() {
  18. this.$http.getPrivacy().then(res => {
  19. if (res.data.code == 200) {
  20. console.log(res)
  21. this.data = res.data.result.privacy
  22. // this.data=res.data.result
  23. // console.log(this.data.result.ysxy)
  24. }
  25. })
  26. },
  27. }
  28. }
  29. </script>
  30. <style lang="scss">
  31. page {
  32. height: 100%;
  33. }
  34. .agreement {
  35. height: 100%;
  36. .con {
  37. width: 680rpx;
  38. margin: 24rpx auto;
  39. padding: 32rpx;
  40. background-color: #fff;
  41. border-radius: 24rpx;
  42. }
  43. }
  44. </style>