This commit is contained in:
Eudemon 2025-03-12 19:10:46 +08:00
parent 5519dee3cf
commit bcd07e0c8f
4 changed files with 24 additions and 19 deletions

View File

@ -126,7 +126,7 @@
.service-icon {
position: fixed;
z-index: 101;
z-index: 1011;
}
.content-container {

View File

@ -28,7 +28,7 @@ const props = defineProps({
.start-loading-view {
position: fixed;
z-index: 9999;
z-index: 99;
top: 0;
left: 0;
bottom: 0;

View File

@ -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)
@ -136,10 +140,10 @@ const initData = async () => {
// #endif
console.log('isLogin', userStore.isLogin);
const { data } = await getFbInfoApi()
if(data?.name) {
if (data?.name) {
appStore.channelId = data?.name
}
if(data?.pixelH5) {
if (data?.pixelH5) {
appStore.h5No = data?.pixelH5
}

View File

@ -16,6 +16,7 @@ export default {
itemLightBgColor: "#7d1616",
normal: '#333333',
light: '#ffffff',
startColor: '#830707',
startLoginBgColor: 'linear-gradient(180deg, #830707, #210403)',
dark: '#000000',
dark300: '#999999',