| 123456789101112131415161718192021222324252627282930 |
- <template>
- <cwg-page-wrapper class="permission-page">
- <view class="content">
- <view class="privacy" v-html="problemDetails.answer"></view>
- </view>
- </cwg-page-wrapper>
- </template>
- <script setup lang="ts">
- import { onLoad } from '@dcloudio/uni-app'
- import { computed } from 'vue'
- import useUserStore from "@/stores/use-user-store";
- const userStore = useUserStore();
- const problemDetails = computed(() => {
- return userStore.problemDetails;
- });
- </script>
- <style lang="scss" scoped>
- @import "@/uni.scss";
- .permission-page {
- min-height: 100vh;
- background-color: #f5f5f5;
- padding: px2rpx(12) !important;
- .content {}
- }
- </style>
|