xieyi.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <view style="padding: 24rpx;" v-html="content">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. data(){
  8. return{
  9. type:1,
  10. content:''
  11. }
  12. },
  13. onLoad(option) {
  14. this.type = option.type
  15. this.getdata()
  16. },
  17. onShow() {
  18. if(this.type == 1){
  19. uni.setNavigationBarTitle({
  20. title:'用户协议'
  21. })
  22. }
  23. if(this.type == 2){
  24. uni.setNavigationBarTitle({
  25. title:' 隐私政策'
  26. })
  27. }
  28. if(this.type == 3){
  29. uni.setNavigationBarTitle({
  30. title:' 报备活动规则'
  31. })
  32. }
  33. },
  34. methods:{
  35. getdata(){
  36. if(this.type == 1){
  37. this.$u.post('/api/Index/platform_config').then(res => {
  38. const regex = new RegExp('<img', 'gi')
  39. this.content = res.data.agreement.replace(regex, `<img style="max-width: 100%; height: auto"`)
  40. })
  41. }
  42. if(this.type == 2){
  43. this.$u.post('/api/Index/platform_config').then(res => {
  44. const regex = new RegExp('<img', 'gi')
  45. this.content = res.data.privacy_policy.replace(regex, `<img style="max-width: 100%; height: auto"`)
  46. })
  47. }
  48. if(this.type == 3){
  49. this.$u.post('/api/Index/platform_config').then(res => {
  50. const regex = new RegExp('<img', 'gi')
  51. this.content = res.data.report_rule.replace(regex, `<img style="max-width: 100%; height: auto"`)
  52. })
  53. }
  54. }
  55. }
  56. }
  57. </script>
  58. <style lang="scss">
  59. </style>