wip: 迁移 v3-admin v3.1.3 版本代码

This commit is contained in:
pany
2022-04-21 18:20:39 +08:00
parent 9b4af24d41
commit 83979683b1
78 changed files with 3070 additions and 149 deletions

View File

@@ -0,0 +1,45 @@
<!-- 右侧悬浮设置面板 -->
<template>
<div class="handle-button" :style="{top: buttonTop + 'px'}" @click="show = true">
<el-icon :size="24">
<Setting />
</el-icon>
</div>
<el-drawer v-model="show" size="300px" :with-header="false">
<slot />
</el-drawer>
</template>
<script lang="ts" setup>
import { ref } from 'vue'
import { Setting } from '@element-plus/icons-vue'
defineProps({
buttonTop: {
type: Number,
default: 250
}
})
const show = ref(false)
</script>
<style lang="scss" scoped>
.handle-button {
width: 48px;
height: 48px;
background-color: #152d3d;
position: absolute;
right: 0px;
text-align: center;
font-size: 24px;
border-radius: 6px 0 0 6px !important;
z-index: 10;
cursor: pointer;
pointer-events: auto;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
}
</style>