xieyi.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <view style="padding: 24rpx;" v-html="content">
  3. </view>
  4. </template>
  5. <script>
  6. import {get_agreement_detail} from "@/units/inquire.js"
  7. export default {
  8. data() {
  9. return {
  10. type: '',
  11. content: ''
  12. }
  13. },
  14. onLoad(option) {
  15. this.type = option.type
  16. },
  17. onShow() {
  18. this.getdata()
  19. },
  20. methods: {
  21. getdata() {
  22. // 协议标识:
  23. // user_service用户服务协议;
  24. // personal_info_protected个人信息保护政策;
  25. // platform_qualification_introduce平台资质介绍;
  26. // service_introduce服务介绍;
  27. // example_introduce案例介绍;
  28. // infomation_introduce资讯介绍;
  29. // contact_customer_service联系客服;
  30. // agreement_rule协议与规则;
  31. // privacy隐私政策;
  32. // pay_for_job付费求职;
  33. // commission_balance佣金余额
  34. get_agreement_detail({
  35. code: {
  36. 1: 'user_service',
  37. 2: 'privacy'
  38. } [this.type]
  39. }).then(res => {
  40. uni.setNavigationBarTitle({
  41. title: res.data.title
  42. })
  43. const regex = new RegExp('<img', 'gi')
  44. this.content = res.data.content.replace(regex, `<img style="max-width: 100%; height: auto"`)
  45. })
  46. }
  47. }
  48. }
  49. </script>
  50. <style lang="scss">
  51. </style>