Files
web-fusion/src/components/PermissionMask.vue

420 lines
10 KiB
Vue
Raw Normal View History

2026-02-04 21:24:11 +08:00
<template>
<div class="permission-mask-wrapper" ref="wrapperRef">
<!-- 有权限时才渲染原始内容 -->
<template v-if="hasAccess">
<slot></slot>
</template>
2026-03-03 21:57:18 +08:00
2026-02-04 21:24:11 +08:00
<!-- 无权限时显示遮罩和占位内容 -->
<template v-else>
2026-03-03 21:57:18 +08:00
<!-- 占位背景 -->
2026-02-04 21:24:11 +08:00
<div class="permission-placeholder">
<img v-if="placeholderImage" :src="placeholderImage" alt="" class="placeholder-image" />
<div v-else class="placeholder-pattern"></div>
</div>
2026-03-03 21:57:18 +08:00
2026-02-04 21:24:11 +08:00
<!-- 权限遮罩层 -->
<div class="permission-mask" ref="maskRef" :data-permission-guard="guardKey">
2026-03-03 21:57:18 +08:00
<!-- 上方锁提示区域 -->
<div class="mask-top">
<div class="mask-content">
<div class="lock-icon-wrapper">
<svg class="lock-icon" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19 11H5C3.89543 11 3 11.8954 3 13V20C3 21.1046 3.89543 22 5 22H19C20.1046 22 21 21.1046 21 20V13C21 11.8954 20.1046 11 19 11Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7 11V7C7 5.67392 7.52678 4.40215 8.46447 3.46447C9.40215 2.52678 10.6739 2 12 2C13.3261 2 14.5979 2.52678 15.5355 3.46447C16.4732 4.40215 17 5.67392 17 7V11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<h3 class="mask-title">{{ title }}</h3>
<p class="mask-description">{{ description }}</p>
<div class="mask-hint">
<span class="material-icons-round hint-icon">info</span>
<span>请联系管理员开通权限</span>
</div>
</div>
</div>
<!-- 下方名片区域 -->
<div v-if="contacts && contacts.length" class="cards-area">
<div class="cards-header">
<button class="refresh-btn" @click="shuffleContacts">
<span class="material-icons-round" style="font-size:18px;">refresh</span>
换一批
</button>
2026-02-04 21:24:11 +08:00
</div>
2026-03-03 21:57:18 +08:00
<div class="cards-row">
<div
v-for="(contact, index) in visibleContacts"
:key="index"
class="contact-card"
>
<div class="card-avatar-wrapper">
<img :src="contact.avatar" class="card-avatar" alt="" />
</div>
<div class="card-body">
<div class="card-name">{{ contact.name }}</div>
<div class="card-desc">{{ contact.desc }}</div>
<img :src="contact.qrcode" class="card-qrcode" alt="二维码" />
<div class="card-phone">
<span class="material-icons-round phone-icon">phone</span>
{{ contact.phone }}
</div>
</div>
</div>
2026-02-04 21:24:11 +08:00
</div>
</div>
</div>
</template>
</div>
</template>
<script setup>
import { ref, computed, onMounted, onUnmounted, watch } from 'vue'
import { getPermissions } from '@/utils/storage'
const props = defineProps({
permissionKey: {
type: String,
required: true,
validator: (value) => ['bigBrother', 'crawl', 'webAi'].includes(value)
},
title: {
type: String,
default: '功能未开通'
},
description: {
type: String,
default: '您当前没有使用此功能的权限'
},
placeholderImage: {
type: String,
default: ''
2026-03-03 21:57:18 +08:00
},
// 名片数据,每项: { avatar, name, desc, qrcode, phone }
contacts: {
type: Array,
default: () => []
2026-02-04 21:24:11 +08:00
}
})
const wrapperRef = ref(null)
const maskRef = ref(null)
2026-03-03 21:57:18 +08:00
const contactOffset = ref(0)
2026-02-04 21:24:11 +08:00
const guardKey = computed(() => `guard_${props.permissionKey}_${Date.now()}`)
const permissionsData = ref(getPermissions())
const hasAccess = computed(() => {
return permissionsData.value[props.permissionKey] === 1
})
2026-03-03 21:57:18 +08:00
// 每次显示3张换一批向后轮转
const visibleContacts = computed(() => {
if (!props.contacts.length) return []
const total = props.contacts.length
return [0, 1, 2].map(i => props.contacts[(contactOffset.value + i) % total])
})
const shuffleContacts = () => {
if (props.contacts.length <= 3) return
contactOffset.value = (contactOffset.value + 3) % props.contacts.length
}
2026-02-04 21:24:11 +08:00
let permissionCheckInterval = null
const refreshPermissions = () => {
permissionsData.value = getPermissions()
}
let observer = null
const setupDOMProtection = () => {
if (hasAccess.value || !wrapperRef.value) return
2026-03-03 21:57:18 +08:00
2026-02-04 21:24:11 +08:00
observer = new MutationObserver((mutations) => {
for (const mutation of mutations) {
if (mutation.type === 'childList') {
const maskExists = wrapperRef.value?.querySelector('.permission-mask')
if (!maskExists && !hasAccess.value) {
console.warn('[PermissionMask] 检测到权限遮罩被非法移除,正在重载页面...')
window.location.reload()
}
}
if (mutation.type === 'attributes' && mutation.target.classList?.contains('permission-mask')) {
const mask = mutation.target
const style = window.getComputedStyle(mask)
if (style.display === 'none' || style.visibility === 'hidden' || style.opacity === '0') {
console.warn('[PermissionMask] 检测到权限遮罩样式被非法修改,正在重载页面...')
window.location.reload()
}
}
}
})
2026-03-03 21:57:18 +08:00
2026-02-04 21:24:11 +08:00
observer.observe(wrapperRef.value, {
childList: true,
subtree: true,
attributes: true,
attributeFilter: ['style', 'class']
})
}
onMounted(() => {
2026-03-03 21:57:18 +08:00
console.log("获取名片",props.contacts)
2026-02-04 21:24:11 +08:00
2026-03-03 21:57:18 +08:00
permissionCheckInterval = setInterval(refreshPermissions, 2000)
2026-02-04 21:24:11 +08:00
setTimeout(setupDOMProtection, 100)
})
onUnmounted(() => {
2026-03-03 21:57:18 +08:00
if (permissionCheckInterval) clearInterval(permissionCheckInterval)
if (observer) observer.disconnect()
2026-02-04 21:24:11 +08:00
})
watch(hasAccess, (newVal) => {
2026-03-03 21:57:18 +08:00
if (observer) observer.disconnect()
if (!newVal) setTimeout(setupDOMProtection, 100)
2026-02-04 21:24:11 +08:00
})
</script>
<style scoped>
.permission-mask-wrapper {
position: relative;
width: 100%;
height: 100%;
}
.permission-placeholder {
position: absolute;
inset: 0;
background: #f8fafc;
z-index: 99;
overflow: hidden;
}
.placeholder-image {
width: 100%;
height: 100%;
object-fit: cover;
object-position: top left;
pointer-events: none;
user-select: none;
}
.placeholder-pattern {
width: 100%;
height: 100%;
2026-03-03 21:57:18 +08:00
background-image:
2026-02-04 21:24:11 +08:00
linear-gradient(45deg, #e2e8f0 25%, transparent 25%),
linear-gradient(-45deg, #e2e8f0 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, #e2e8f0 75%),
linear-gradient(-45deg, transparent 75%, #e2e8f0 75%);
background-size: 20px 20px;
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
opacity: 0.5;
}
.permission-mask {
position: absolute;
inset: 0;
z-index: 100;
display: flex;
2026-03-03 21:57:18 +08:00
flex-direction: column;
2026-02-04 21:24:11 +08:00
align-items: center;
2026-03-03 21:57:18 +08:00
justify-content: flex-start;
2026-02-04 21:24:11 +08:00
background: rgba(15, 23, 42, 0.75);
backdrop-filter: blur(1px);
-webkit-backdrop-filter: blur(8px);
2026-03-03 21:57:18 +08:00
overflow-y: auto;
}
/* 上方锁提示区域 */
.mask-top {
display: flex;
justify-content: center;
padding-top: 6vh;
width: 100%;
2026-02-04 21:24:11 +08:00
}
.mask-content {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 2.5rem;
background: rgba(255, 255, 255, 0.95);
border-radius: 1.5rem;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
max-width: 360px;
animation: slideUp 0.4s ease-out;
}
@keyframes slideUp {
2026-03-03 21:57:18 +08:00
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
2026-02-04 21:24:11 +08:00
}
.lock-icon-wrapper {
width: 80px;
height: 80px;
border-radius: 50%;
background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.lock-icon {
width: 40px;
height: 40px;
color: #64748b;
}
.mask-title {
font-size: 1.375rem;
font-weight: 700;
color: #1e293b;
margin: 0 0 0.5rem 0;
}
.mask-description {
font-size: 0.9375rem;
color: #64748b;
margin: 0 0 1.5rem 0;
line-height: 1.5;
}
.mask-hint {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.625rem 1rem;
background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
border-radius: 9999px;
color: #3b82f6;
font-size: 0.875rem;
font-weight: 500;
}
.hint-icon {
font-size: 1.125rem;
}
2026-03-03 21:57:18 +08:00
/* 名片区域 */
.cards-area {
width: 100%;
padding: 3vh 4rem 2rem;
animation: slideUp 0.4s ease-out 0.1s both;
}
.cards-header {
display: flex;
justify-content: flex-end;
margin-bottom: 1rem;
}
.refresh-btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 0.5rem 1.25rem;
background: #2563eb;
color: #fff;
border: none;
border-radius: 9999px;
font-size: 0.9rem;
font-weight: 500;
cursor: pointer;
transition: background 0.2s;
}
.refresh-btn:hover {
background: #1d4ed8;
}
.cards-row {
display: flex;
justify-content: space-evenly;
}
/* 单张名片 */
.contact-card {
flex: 1;
max-width: 280px;
background: #fff;
border-radius: 1.25rem;
padding-top: 52px;
position: relative;
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
display: flex;
flex-direction: column;
align-items: center;
}
.card-avatar-wrapper {
position: absolute;
top: -44px;
left: 50%;
transform: translateX(-50%);
width: 88px;
height: 88px;
border-radius: 50%;
border: 4px solid #fff;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
overflow: hidden;
background: #e2e8f0;
}
.card-avatar {
width: 100%;
height: 100%;
object-fit: cover;
}
.card-body {
display: flex;
flex-direction: column;
align-items: center;
padding: 0.5rem 1.5rem 1.5rem;
width: 100%;
}
.card-name {
font-size: 1.25rem;
font-weight: 700;
color: #1e293b;
margin-bottom: 0.5rem;
}
.card-desc {
font-size: 0.8125rem;
color: #64748b;
text-align: center;
margin-bottom: 1rem;
line-height: 1.5;
}
.card-qrcode {
width: 140px;
height: 140px;
object-fit: contain;
margin-bottom: 1rem;
}
.card-phone {
display: flex;
align-items: center;
gap: 6px;
font-size: 1rem;
color: #2563eb;
font-weight: 500;
}
.phone-icon {
font-size: 1.1rem;
color: #2563eb;
}
2026-02-04 21:24:11 +08:00
</style>