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