1
lzhe
2024-06-09 4512fc9d652e0127441a84f1141b9e074dc16aa6
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
38
39
40
41
42
43
44
45
<template>
    <el-card shadow="hover" header="信息卡" class="item-background">
        <div class="informationCar">
            <div class="informationCar-info">
                <img src="./img-logo.png">
                <div>
                    <div>admin</div>
                    <div>admin</div>
                </div>
            </div>
            <img class="car-img" src="./info.76e912c7.png">
        </div>
        <ul>
            <li>中兵航联</li>
            <li>未绑定员工</li>
        </ul>
        <div class="ver">版本号: 93.1.14</div>
    </el-card>
</template>
 
<script>
    export default {
        title: "信息卡",
        icon: "el-icon-setting",
        description: "员工职位信息、账号信息、系统版本快速查看",
        data() {
            return {
                
            }
        }
    }
</script>
 
<style scoped>
    .item-background {position: relative;}
    .item-background p {color: #999;margin-top:10px;line-height: 1.8;}
    .informationCar {display: flex;height: 60px;}
    .car-img {flex: 1;}
    .informationCar-info {width: 150px;display: flex;height: 50px;align-items: center;}
    .informationCar-info img {width: 30px;height:30px;}
    .informationCar-info > div {margin-left: 32px;flex: 1;}
    .informationCar-info > div div:nth-child(1) {margin-bottom: 8px;font-size: 14px;font-weight: bold;}
    ul {list-style: none;margin-bottom: 20px;}
    .ver {position: absolute;bottom: 6px;right: 8px;}
</style>