新增:影响域分析录入和修复editor问题

This commit is contained in:
2026-02-07 17:27:17 +08:00
parent 98835a3225
commit 619d5ea652
17 changed files with 770 additions and 296 deletions

View File

@@ -0,0 +1,68 @@
<template>
<button class="button">
<svg xmlns="http://www.w3.org/2000/svg" width="20" viewBox="0 0 20 20" height="20" fill="none" class="svg-icon">
<g stroke-width="1.5" stroke-linecap="round" stroke="#5d41de">
<circle r="2.5" cy="10" cx="10"></circle>
<path
fill-rule="evenodd"
d="m8.39079 2.80235c.53842-1.51424 2.67991-1.51424 3.21831-.00001.3392.95358 1.4284 1.40477 2.3425.97027 1.4514-.68995 2.9657.82427 2.2758 2.27575-.4345.91407.0166 2.00334.9702 2.34248 1.5143.53842 1.5143 2.67996 0 3.21836-.9536.3391-1.4047 1.4284-.9702 2.3425.6899 1.4514-.8244 2.9656-2.2758 2.2757-.9141-.4345-2.0033.0167-2.3425.9703-.5384 1.5142-2.67989 1.5142-3.21831 0-.33914-.9536-1.4284-1.4048-2.34247-.9703-1.45148.6899-2.96571-.8243-2.27575-2.2757.43449-.9141-.01669-2.0034-.97028-2.3425-1.51422-.5384-1.51422-2.67994.00001-3.21836.95358-.33914 1.40476-1.42841.97027-2.34248-.68996-1.45148.82427-2.9657 2.27575-2.27575.91407.4345 2.00333-.01669 2.34247-.97026z"
clip-rule="evenodd"
></path>
</g>
</svg>
<span class="lable">{{ label }}</span>
<slot></slot>
</button>
</template>
<script setup lang="ts">
const { label } = defineProps<{
label: string
}>()
defineOptions({
name: "SettingButton"
})
</script>
<style scoped>
.button {
display: flex;
justify-content: center;
align-items: center;
padding: 6px 12px;
gap: 8px;
height: 36px;
width: 200px;
border: none;
background: #5e41de33;
border-radius: 20px;
cursor: pointer;
}
.lable {
line-height: 20px;
font-size: 17px;
color: #5d41de;
font-family: sans-serif;
letter-spacing: 1px;
}
.button:hover {
background: #5e41de4d;
}
.button:hover .svg-icon {
animation: spin 2s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>