zhangxiaoxu123456
2022-04-07 657d56c7f2003781aa3bcea79d28cadf14478a14
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<template>
    <div class="showIndexTitle-wrap">
      <h1 class="title">石家庄人社局业务运行数据分析平台</h1>
      <el-menu :default-active="$route.path" router mode="horizontal" class="el-menu-demo">
        <div class="showIndex-left">
          <el-menu-item index="/index">
            <div class="showIndex-block">
              <h1>首页</h1>
            </div>
          </el-menu-item>
          <el-menu-item index="/jiuyeAndChuangye">
            <div class="showIndex-block">
              <h1>就业创业</h1>
            </div>
          </el-menu-item>
          <el-menu-item index="/shehuiBaozhang">
            <div class="showIndex-block">
              <h1>社会保障</h1>
            </div>
          </el-menu-item>
          <el-menu-item>
            <div class="showIndex-block">
              <h1>人事人才</h1>
            </div>
          </el-menu-item>
          <el-menu-item>
            <div class="showIndex-block">
              <h1>劳动关系</h1>
            </div>
          </el-menu-item>
          <el-menu-item>
            <div class="showIndex-block">
              <h1>其它业务</h1>
            </div>
          </el-menu-item>
 
        </div>
        <div class="showIndex-right">
          <el-menu-item>
            <div class="showIndex-block">
              <h1>营商政策</h1>
            </div>
          </el-menu-item>
          <el-menu-item>
            <div class="showIndex-block">
              <h1>通讯录</h1>
            </div>
          </el-menu-item>
          <el-menu-item>
            <div class="showIndex-block">
              <h1>工作周报</h1>
            </div>
          </el-menu-item>
          <el-menu-item>
            <div class="showIndex-block">
              <h1>文档中心</h1>
            </div>
          </el-menu-item>
          <el-menu-item>
            <div class="showIndex-block">
              <h1>退出登录</h1>
            </div>
          </el-menu-item>
        </div>
      </el-menu>
    </div>
</template>
 
<script>
    export default {
        name: "showIndexTitle"
    }
</script>
 
<style lang="scss">
  .showIndexTitle-wrap{
    .el-menu-item:focus, .el-menu-item:hover{
      background-color:transparent;
    }
    /*.el-menu-item:focus{*/
    /*  background:url("../../assets/images/menu-active.png") no-repeat center;*/
    /*  background-size: 100% 100%;*/
    /*  width: 12.8rem  !* 128/10 *!;*/
    /*  height: 5rem;*/
    /*}*/
    .el-menu-item.is-active{
      background:url("../../assets/images/menu-active.png") no-repeat center;
      background-size: 100% 100%;
      width: 12.8rem  /* 128/10 */;
      height: 5rem;
    }
    .el-menu-item{
      background:url("../../assets/images/menu-normal.png") no-repeat center;
      background-size: 100% 100%;
      width: 12.8rem  /* 128/10 */;
      height: 5rem;
      margin-right: 1.2rem  /* 12/10 */;
    }
    .el-menu.el-menu--horizontal{
      border-bottom: 0;
    }
  }
 
</style>
<style lang="scss" scoped>
  .showIndexTitle-wrap{
    width: 100%;
    height: 9rem  /* 90/10 */;
    background:url("../../assets/images/jiashicang-title-bj.png") no-repeat center;
    background-size: 100% 100%;
    .title{
      font-size: 3rem  /* 30/10 */;
      font-family: 'Source Han Sans CN';
      color: #fff;
      text-align: center;
      line-height: 7rem  /* 70/10 */;
    }
    .showIndex-left{
      position: absolute;
      left:1rem  /* 10/10 */;
      top: -5rem  /* 10/10 */;
      display: flex;
      .showIndex-block{
        /*background:url("../../assets/images/menu-normal.png") no-repeat center;*/
        /*background-size: 100% 100%;*/
        /*width: 12.8rem  !* 128/10 *!;*/
        /*height: 5rem;*/
        h1{
          color: #fff;
          font-size: 2.4rem;
          text-align: center;
          line-height: 5rem;
        }
      }
    }
    .showIndex-right{
      position: absolute;
      right:1rem  /* 10/10 */;
      top: -5rem  /* 10/10 */;
      display: flex;
      .showIndex-block{
        /*background:url("../../assets/images/menu-normal.png") no-repeat center;*/
        /*background-size: 100% 100%;*/
        /*width: 12.8rem  !* 128/10 *!;*/
        /*height: 5rem;*/
        /*cursor: pointer;*/
        h1{
          color: #fff;
          font-size: 2.4rem;
          text-align: center;
          line-height: 5rem;
        }
      }
      .menu-active{
 
      }
    }
  }
</style>