lzhe
2024-06-06 a2441175073f8b09a7eff29effd7e3e617de2f7d
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
<template>
    <el-container>
        <el-header style="height:50px;">
            <div class="common-header-left">
                <div class="common-header-logo">
                    <img :alt="$CONFIG.APP_NAME" src="img/logo.png">
                    <label>{{$CONFIG.APP_NAME}}</label>
                </div>
                <div class="common-header-title">{{title}}</div>
            </div>
            <div class="common-header-right">
                <router-link to="/login">返回登录</router-link>
            </div>
        </el-header>
        <el-main>
            <div class="common-container">
                <h2 class="common-title">{{title}}</h2>
                <div class="common-main el-card">
                    <slot></slot>
                </div>
            </div>
        </el-main>
    </el-container>
</template>
 
<script>
    export default {
        props: {
            title: { type: String, default: "" }
        }
    }
</script>
 
<style>
</style>