agreement.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. type: 0
  12. }
  13. },
  14. onLoad(option) {
  15. this.type = option.type
  16. if (option.type == 1) {
  17. this.geixieyi()
  18. } else {
  19. this.configInfo()
  20. }
  21. },
  22. methods: {
  23. geixieyi() {
  24. // this.$http.getUserAgreement().then(res => {
  25. // uni.openDocument({
  26. // filePath: res.data.result.url,
  27. // fileType:'pdf',
  28. // fail: (e) => {
  29. // console.log(e);
  30. // }
  31. // })
  32. // })
  33. },
  34. configInfo() {
  35. this.$http.getPrivacy().then(res => {
  36. if (res.data.code == 200) {
  37. console.log(res)
  38. this.data = res.data.result.privacy
  39. // this.data=res.data.result
  40. // console.log(this.data.result.ysxy)
  41. }
  42. })
  43. },
  44. }
  45. }
  46. </script>
  47. <style lang="scss">
  48. page {
  49. height: 100%;
  50. }
  51. .agreement {
  52. height: 100%;
  53. .con {
  54. width: 680rpx;
  55. margin: 24rpx auto;
  56. padding: 32rpx;
  57. background-color: #fff;
  58. border-radius: 24rpx;
  59. }
  60. }
  61. </style>