69 lines
1.2 KiB
Vue
69 lines
1.2 KiB
Vue
<template>
|
|
<div class="loading-mask" v-if="show">
|
|
<div class="loading-content">
|
|
<div class="loading-spinner"></div>
|
|
<p class="loading-text">{{ text || '加载中...' }}</p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'LoadingMask',
|
|
props: {
|
|
show: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
text: {
|
|
type: String,
|
|
default: '加载中...'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.loading-mask {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.loading-content {
|
|
background: white;
|
|
border-radius: 15rpx;
|
|
padding: 40rpx;
|
|
text-align: center;
|
|
box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.2);
|
|
min-width: 200rpx;
|
|
}
|
|
|
|
.loading-spinner {
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
margin: 0 auto 20rpx;
|
|
border: 6rpx solid #f3f3f3;
|
|
border-top: 6rpx solid #007AFF;
|
|
border-radius: 50%;
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
|
|
.loading-text {
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
margin: 0;
|
|
}
|
|
</style> |