xieyi.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <template>
  2. <view class="content">
  3. <u-parse :content="content"></u-parse>
  4. </view>
  5. </template>
  6. <script>
  7. import $api from '@/static/js/api.js'
  8. export default {
  9. data() {
  10. return {
  11. content: '',
  12. }
  13. },
  14. onLoad(options) {
  15. if (options.type == 'rule') {
  16. uni.setNavigationBarTitle({
  17. title: '积分规则'
  18. })
  19. this.getdata('rule')
  20. }
  21. if (options.type == 'user') {
  22. uni.setNavigationBarTitle({
  23. title: '用户协议'
  24. })
  25. this.getdata('user')
  26. }
  27. if (options.type == 'yinsi') {
  28. uni.setNavigationBarTitle({
  29. title: '隐私政策'
  30. })
  31. this.getdata('private')
  32. }
  33. if (options.type == 'geren') {
  34. uni.setNavigationBarTitle({
  35. title: '个人信息收集清单'
  36. })
  37. this.getdata('personal')
  38. }
  39. if (options.type == 'shengming') {
  40. uni.setNavigationBarTitle({
  41. title: '开源软件声明'
  42. })
  43. this.getdata('software')
  44. }
  45. },
  46. methods: {
  47. getdata(val) {
  48. var _this = this
  49. $api.req({
  50. url: 'agreement/detail',
  51. method: 'GET',
  52. data: {
  53. code: val
  54. }
  55. }, function(res) {
  56. if (res.code == 10000) {
  57. _this.content = res.data.content
  58. }
  59. })
  60. }
  61. }
  62. }
  63. </script>
  64. <style lang="scss">
  65. .content {
  66. background-color: #fff;
  67. min-height: 100vh;
  68. box-sizing: border-box;
  69. padding: 0 30rpx;
  70. }
  71. </style>