gaosp
2024-01-05 ea911d3b42cac8948eb6f1285c7ad46706707643
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
<!--
 * @Date: 2024-01-04 23:08:48
 * @LastEditors: Sneed
 * @LastEditTime: 2024-01-05 22:24:02
 * @FilePath: /belleson-frontend/Users/mache/Documents/demo/mdc/src/views/home/Welcome.vue
-->
<template>
    <div>
        <div class="welcome">
            admin您好,欢迎使用千文科技MDC展示系统
        </div>
    </div>
</template>
<style lang="scss" scoped>
    .welcome {
        width: 100%;
        height: 102px;
        position: absolute;
        top: 30%;
        font-size: 40px;
        color: #68D9FF;
        line-height: 102px;
        background: url('./welcome.png') 0 0 no-repeat;
        background-size: contain;
        text-align: center;
        user-select:none;
    }
</style>