付延余
2022-04-24 c2d5e97c2ccac4d5d6c620cc4ef07d68e2ba44f8
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
<template>
  <div class="personnelTalents__warp">
    <div class="personnelTalents-menu-left">
      <el-menu :default-active="$route.path" router mode="vertical">
        <el-menu-item index="/personnelTalents_unitPersonnel">
          <div class="menu-left-block">
            <h1 style="line-height:1.6;">事业单位
              <br/>人员情况</h1>
          </div>
        </el-menu-item>
        <el-menu-item index="/personnelTalents_greenCard">
          <div class="menu-left-block">
            <h1>人才绿卡补贴</h1>
          </div>
        </el-menu-item>
      </el-menu>
    </div>
    <div class="personnelTalents-right">
      <router-view></router-view>
    </div>
  </div>
</template>
 
<script>
export default {
  name: "PersonnelTalents"
}
</script>
<style lang="scss">
.personnelTalents__warp {
  .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;
  }
 
  .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";
 
.personnelTalents__warp {
  width: 100%;
  padding: 0.078125rem /* 20/256 */
;
  box-sizing: border-box;
  display: flex;
 
  .personnelTalents-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 {
      width: 100%;
      display: flex;
      justify-content: center;
 
      h1 {
        font-size: $fontSize-24;
        color: $color-blue;
        text-align: center;
        line-height: 0.3125rem /* 80/256 */
      ;
 
      }
    }
  }
 
  .personnelTalents-right {
    height: 5.27344rem;
    flex: 1;
    padding: 0 0.078125rem /* 20/256 */
  ;
    box-sizing: border-box;
    @include overflow-y()
  }
}
 
</style>