privacyPolicy.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <!-- ============================= 隐私政策/用户服务条款 ============================= -->
  2. <template>
  3. <view class="u-content">
  4. <u-parse :html="content"></u-parse>
  5. <u-toast ref="uToast" />
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. content: ''
  13. };
  14. },
  15. onLoad(query) {
  16. const termsType = query?.termsType;
  17. if (termsType) {
  18. const termsTypeObj = {
  19. 1: '用户服务条款',
  20. 2: '隐私政策'
  21. };
  22. uni.setNavigationBarTitle({
  23. title: termsTypeObj[Number(termsType)]
  24. });
  25. this.getSysterms(Number(termsType));
  26. }
  27. },
  28. methods: {
  29. /**
  30. * @description: 获取系统参数
  31. * @param {*} termsType
  32. * @return {*}
  33. */
  34. async getSysterms(termsType) {
  35. try {
  36. const { code, data } = await this.$u.api.getSysterms({ termsType });
  37. if (code === 200) {
  38. this.content = data?.content;
  39. }
  40. } catch (error) {
  41. this.showToast('系统错误!', 'error');
  42. }
  43. },
  44. /**
  45. * @description: 显示提示
  46. * @param {*} title
  47. * @param {*} type
  48. * @return {*}
  49. */
  50. showToast(title = '操作失败', type = 'info') {
  51. this.$refs.uToast.show({ title, type });
  52. }
  53. }
  54. };
  55. </script>
  56. <style lang="scss" scoped>
  57. .u-content {
  58. padding: 20rpx;
  59. }
  60. </style>