GuLiMmo
2024-01-08 0c05abd5373262ff8eb855e046017d37307d3329
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<template>
    <el-drawer v-model="props.params.visible" open="openDrawer" direction="rtl" size="50%">
        <template #header>
            <div class="title">评优任务详情</div>
        </template>
    </el-drawer>
</template>
 
<script setup>
 
const props = defineProps({
    params: {
        type: Object,
        default: () => {
            return {
                visible: false,
                type: 0,
                data: {}
            }
        }
    }
})
 
const openDrawer = () => {
 
}
 
 
 
</script>
 
<style lang="scss" scoped>
.title {
    border-left: 3px solid #409eff;
    padding-left: 10px;
}
</style>