工单小程序2024-11-20
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
677 B

11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
  1. <template>
  2. <!-- 隐私协议 -->
  3. <view class="page">
  4. <navbar
  5. title="隐私协议"
  6. leftClick
  7. @leftClick="$utils.navigateBack"/>
  8. <view style="padding: 20rpx;">
  9. <uv-parse :content="privacy.parmValue"></uv-parse>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. privacy:{}
  18. }
  19. },
  20. onLoad() {
  21. this.privacyInfo()
  22. },
  23. methods: {
  24. privacyInfo(){
  25. this.$api('privacyInfo', res =>{
  26. if(res.code == 200){
  27. this.privacy = res.result
  28. }
  29. })
  30. },
  31. }
  32. }
  33. </script>
  34. <style scoped lang="scss">
  35. .page{
  36. .Box{
  37. display: flex;
  38. justify-content: center;
  39. margin-top: 80rpx;
  40. }
  41. }
  42. </style>