fixed
This commit is contained in:
parent
5519dee3cf
commit
bcd07e0c8f
@ -126,7 +126,7 @@
|
||||
|
||||
.service-icon {
|
||||
position: fixed;
|
||||
z-index: 101;
|
||||
z-index: 1011;
|
||||
}
|
||||
|
||||
.content-container {
|
||||
|
@ -28,7 +28,7 @@ const props = defineProps({
|
||||
|
||||
.start-loading-view {
|
||||
position: fixed;
|
||||
z-index: 9999;
|
||||
z-index: 99;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
|
@ -1,5 +1,6 @@
|
||||
<template>
|
||||
<view class="w-full relative" style="height: 100vh;overflow: hidden;">
|
||||
<common-layout :bgColor="themeStore.theme.startColor">
|
||||
<!-- <view class="w-full relative" style="height: 100vh;overflow: hidden;"> -->
|
||||
<StartLoading :visible="true" />
|
||||
<!-- #ifdef APP-PLUS -->
|
||||
<view class="progress" v-if="showProgress">
|
||||
@ -8,7 +9,8 @@
|
||||
</view>
|
||||
<Download ref="downloadRef" @close="handleClose" @confirm="handleConfirm" />
|
||||
<!-- #endif -->
|
||||
</view>
|
||||
<!-- </view> -->
|
||||
</common-layout>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
@ -28,7 +30,9 @@ import { getAndroidId } from "@/uni_modules/x-uniq-id"
|
||||
// #endif
|
||||
import md5 from "crypto-js/md5"
|
||||
import { getFbInfoApi } from "@/api/account"
|
||||
import { useThemeStore } from "@/store/useThemeStore"
|
||||
|
||||
const themeStore = useThemeStore()
|
||||
const userStore = useUserStore()
|
||||
const appStore = useAppStore()
|
||||
const downloadRef = ref(null)
|
||||
|
@ -16,6 +16,7 @@ export default {
|
||||
itemLightBgColor: "#7d1616",
|
||||
normal: '#333333',
|
||||
light: '#ffffff',
|
||||
startColor: '#830707',
|
||||
startLoginBgColor: 'linear-gradient(180deg, #830707, #210403)',
|
||||
dark: '#000000',
|
||||
dark300: '#999999',
|
||||
|
Loading…
Reference in New Issue
Block a user