26 lines
448 B
Vue
26 lines
448 B
Vue
<script setup lang="ts">
|
|
//
|
|
</script>
|
|
|
|
<template>
|
|
<view class="loading-wrapper">
|
|
<wd-loading :size="40" color="#64eeee" />
|
|
</view>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.loading-wrapper {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(255, 255, 255, 0.85);
|
|
z-index: 999;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|