| | |
| | | <view class="card-illu faq"></view> |
| | | </view> |
| | | </view> --> |
| | | |
| | | <view class="version-wrap"> |
| | | <text class="version-text">版本号:{{ version }}</text> |
| | | </view> |
| | | |
| | | <DownloadProgressMask /> |
| | | </view> |
| | | </template> |
| | | |
| | |
| | | import config from '@/config.js' |
| | | import { getUserProfile } from "@/api/system/user"; |
| | | import useUserStore from '@/store/modules/user' |
| | | import DownloadProgressMask from "@/components/DownloadProgressMask.vue"; |
| | | const userStore = useUserStore() |
| | | const name = userStore.name; |
| | | const roleName = userStore.roleName; |
| | |
| | | .mine-page { |
| | | min-height: 100vh; |
| | | padding: 1.25rem; |
| | | padding-top: env(safe-area-inset-top); |
| | | /* 为所有设备设置基础padding-top */ |
| | | padding-top: 40px; |
| | | position: relative; |
| | | background: linear-gradient( 225deg, #E7F1FF 0%, rgba(255,255,255,0) 74%, rgba(255,255,255,0) 100%); |
| | | |
| | | /* iOS设备使用env()函数处理安全区域 */ |
| | | padding-top: env(safe-area-inset-top); |
| | | |
| | | /* 为安卓设备设置更大的顶部内边距 */ |
| | | /* #ifdef APP-PLUS && !MP && !H5 */ |
| | | padding-top: 45px; |
| | | /* #endif */ |
| | | |
| | | /* H5和小程序平台的通用样式 */ |
| | | /* #ifdef H5 || MP */ |
| | | padding-top: 30px; |
| | | /* #endif */ |
| | | } |
| | | |
| | | /* 版本号 */ |
| | | .version-wrap { |
| | | width: 100%; |
| | | text-align: center; |
| | | margin-top: 18px; |
| | | padding-bottom: 14px; |
| | | } |
| | | |
| | | .version-text { |
| | | font-size: 12px; |
| | | color: #999; |
| | | } |
| | | |
| | | /* 顶部个人信息卡 */ |
| | |
| | | align-items: center; |
| | | color: #333; |
| | | margin: 1.25rem 0; |
| | | |
| | | /* 为安卓设备额外调整卡片位置 */ |
| | | /* #ifdef APP-PLUS && !MP && !H5 */ |
| | | margin-top: 15px; |
| | | /* #endif */ |
| | | |
| | | .left { |
| | | display: flex; |