60 lines
1.4 KiB
Vue
60 lines
1.4 KiB
Vue
<template>
|
|
<div>
|
|
<div
|
|
v-loading="true"
|
|
element-loading-background="var(--ba-bg-color-overlay)"
|
|
element-loading-text="$'utils.Loading'"
|
|
class="default-main ba-main-loading"
|
|
></div>
|
|
<div v-if="state.showReload" class="loading-footer">
|
|
<el-button @click="refresh" type="warning">utils.Reload</el-button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { onUnmounted, reactive } from 'vue'
|
|
import router from '@/router/index'
|
|
import { useNavTabs } from '@/stores/navTabs'
|
|
import { isAdminApp } from '@/utils/common'
|
|
import { getFirstRoute, routePush } from '@/utils/router'
|
|
let timer: number
|
|
|
|
const navTabs = useNavTabs()
|
|
const state = reactive({
|
|
maximumWait: 1000 * 6,
|
|
showReload: false,
|
|
})
|
|
|
|
const refresh = () => {
|
|
router.go(0)
|
|
}
|
|
|
|
if (isAdminApp() && navTabs.state.tabsViewRoutes) {
|
|
let firstRoute = getFirstRoute(navTabs.state.tabsViewRoutes)
|
|
if (firstRoute) routePush(firstRoute.path)
|
|
}
|
|
|
|
timer = window.setTimeout(() => {
|
|
state.showReload = true
|
|
}, state.maximumWait)
|
|
|
|
onUnmounted(() => {
|
|
clearTimeout(timer)
|
|
})
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.ba-main-loading {
|
|
height: 300px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.loading-footer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
</style>
|