agreement.vue 950 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <view class="app-container">
  3. <view class="content">
  4. <u-parse :content="content"></u-parse>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. type: 1,
  13. content: '',
  14. }
  15. },
  16. onLoad({type}) {
  17. this.type = type;
  18. uni.setNavigationBarTitle({
  19.   title: type == 1 ? '用户协议':'隐私声明'
  20. })
  21. this.getDetail();
  22. },
  23. methods: {
  24. getDetail() {
  25. this.$axios({
  26. url: '/common/wechat/detail',
  27. method: 'get',
  28. params: {},
  29. isLoading: 1
  30. }).then(res => {
  31. if(this.type == 1) {
  32. this.content = res.data.adminCompanyWechatOther.userAgreementContent;
  33. }else {
  34. this.content = res.data.adminCompanyWechatOther.privacyStatementContent;
  35. }
  36. })
  37. },
  38. }
  39. }
  40. </script>
  41. <style lang="scss">
  42. .app-container {
  43. background: #ffffff;
  44. padding: 0 30rpx;
  45. box-sizing: border-box;
  46. }
  47. .content {
  48. image {
  49. width: 100%;
  50. }
  51. }
  52. </style>