help-detail.vue 680 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <cwg-page-wrapper class="permission-page">
  3. <view class="content">
  4. <view class="privacy" v-html="problemDetails.answer"></view>
  5. </view>
  6. </cwg-page-wrapper>
  7. </template>
  8. <script setup lang="ts">
  9. import { onLoad } from '@dcloudio/uni-app'
  10. import { computed } from 'vue'
  11. import useUserStore from "@/stores/use-user-store";
  12. const userStore = useUserStore();
  13. const problemDetails = computed(() => {
  14. return userStore.problemDetails;
  15. });
  16. </script>
  17. <style lang="scss" scoped>
  18. @import "@/uni.scss";
  19. .permission-page {
  20. min-height: 100vh;
  21. background-color: #f5f5f5;
  22. padding: px2rpx(12) !important;
  23. .content {}
  24. }
  25. </style>