付延余
2022-04-24 0a8b339fd4fd1e549522bc40ff24a854c59f26ab
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
<template>
  <div class="shehuiBaozhang-wrap">
    <div class="shehuiBaozhang-menu-left">
      <el-menu :default-active="$route.path" router mode="vertical">
        <el-menu-item index="/shehuiBaoxian">
          <div class="menu-left-block">
            <h1>社会保险</h1>
          </div>
        </el-menu-item>
        <el-menu-item index="/shebaoShouzhiZongbiao">
          <div class="menu-left-block">
            <h1>社保收支总表</h1>
          </div>
        </el-menu-item>
        <el-menu-item index="/qiyezhigongShebao">
          <div class="menu-left-block">
            <h1>企业职工社保</h1>
          </div>
        </el-menu-item>
        <el-menu-item index="/jiguanzhigongShebao">
          <div class="menu-left-block">
            <h1>机关职工社保</h1>
          </div>
        </el-menu-item>
        <el-menu-item index="/juminYanglaoBaoxian">
          <div class="menu-left-block">
            <h1>居民养老保险</h1>
          </div>
        </el-menu-item>
        <el-menu-item index="/shiyeBaoxian">
          <div class="menu-left-block">
            <h1>失业保险</h1>
          </div>
        </el-menu-item>
        <el-menu-item index="/gongshangBaoxian">
          <div class="menu-left-block">
            <h1>工伤保险</h1>
          </div>
        </el-menu-item>
        <el-menu-item index="/shebaoZhengjiShouru">
          <div class="menu-left-block">
            <h1>社保征缴收入</h1>
          </div>
        </el-menu-item>
        <el-menu-item index="/shebaoChikaRenshu">
          <div class="menu-left-block">
            <h1>社保卡持卡人数</h1>
          </div>
        </el-menu-item>
      </el-menu>
    </div>
    <div class="shehuiBaozhang-menu-right">
      <router-view></router-view>
    </div>
  </div>
</template>
 
<script>
export default {
  name: "shehuiBaozhang"
}
</script>
 
<style lang="scss">
.shehuiBaozhang-menu-left{
  .el-menu{
    background-color: transparent;
    border-right:none;
  }
  .el-menu-item, .el-submenu__title{
    height: 0.3125rem  /* 80/256 */;
    margin: 0.1171875rem  /* 30/256 */ 0;
  }
  .el-menu-item{
    background:url("../../../assets/images/jiuye-menu-normal.png") no-repeat center;
    background-size: 100% 100%;
    width: 0.75rem  /* 192/256 */;
    height: 0.3125rem  /* 80/256 */;
    display: flex;
    justify-content: center;
    padding: 0px!important;
  }
  .el-menu-item.is-active{
    background:url("../../../assets/images/jiuye-menu-active.png") no-repeat center;
    background-size: 100% 100%;
    width: 0.75rem  /* 192/256 */;
    height: 0.3125rem  /* 80/256 */;
  }
}
 
</style>
<style lang="scss" scoped>
@import "../../../assets/css/base";
@import "../../../assets/css/mixin";
.shehuiBaozhang-wrap{
  width: 100%;
  padding: 0.078125rem  /* 20/256 */;
  box-sizing: border-box;
  display: flex;
  .shehuiBaozhang-menu-left{
    width: 0.9375rem  /* 240/256 */;
    height: 5.2734375rem  /* 1350/256 */;
    background:url("../../../assets/images/jiuye-menu-bj.png") no-repeat center;
    background-size: 100% 100%;
    padding: 0.15625rem  /* 40/256 */ 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    .menu-left-block{
      h1{
        font-size: $fontSize-24;
        color: $color-blue;
        text-align: center;
        line-height: 0.3125rem  /* 80/256 */;
      }
    }
  }
  .shehuiBaozhang-menu-right{
    flex: 1;
    padding: 0 0.078125rem  /* 20/256 */;
    box-sizing: border-box;
    height: 5.27344rem;
    @include overflow-y();
  }
}
 
</style>