spring
昨天 6afb492942b17ebdb80f8e57af1b0df7ba5ee821
src/pages/mine.vue
@@ -73,6 +73,12 @@
        <view class="card-illu faq"></view>
      </view>
    </view> -->
    <view class="version-wrap">
      <text class="version-text">版本号:{{ version }}</text>
    </view>
    <DownloadProgressMask />
  </view>
</template>
@@ -81,6 +87,7 @@
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;
@@ -150,9 +157,36 @@
.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;
}
/* 顶部个人信息卡 */
@@ -162,6 +196,11 @@
  align-items: center;
  color: #333;
  margin: 1.25rem 0;
  /* 为安卓设备额外调整卡片位置 */
   /* #ifdef APP-PLUS && !MP && !H5 */
   margin-top: 15px;
   /* #endif */
  .left {
    display: flex;