zhangxiaoxu123456
2022-04-22 ee658b8ab1dd3b76b8c3fa3f2006b4fa8e8af0cf
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
<template>
  <div class="jiuyeAndChuangye-wrap">
     <div class="menu-left">
        <el-menu :default-active="$route.path" router mode="vertical">
          <el-menu-item index="/workStatistics">
            <div class="menu-left-block">
              <h1>劳动就业统计</h1>
            </div>
          </el-menu-item>
          <el-menu-item index="/chuangyeDanbaoDaikuan">
            <div class="menu-left-block">
              <h1>创业担保贷款</h1>
            </div>
          </el-menu-item>
          <el-menu-item index="/jiuyeQingkuang">
            <div class="menu-left-block">
              <h1>就业情况</h1>
            </div>
          </el-menu-item>
          <el-menu-item index="/biyeshengStatistics">
            <div class="menu-left-block">
              <h1>毕业生统计</h1>
            </div>
          </el-menu-item>
          <el-menu-item index="/zhiyePeixun">
            <div class="menu-left-block">
              <h1>职业培训</h1>
            </div>
          </el-menu-item>
        </el-menu>
     </div>
     <div class="menu-right">
       <router-view></router-view>
     </div>
  </div>
</template>
 
<script>
    export default {
        name: "jiuyeAndChuangye"
    }
</script>
 
<style lang="scss">
  .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";
  .jiuyeAndChuangye-wrap{
    width: 100%;
    padding: 0.078125rem  /* 20/256 */;
    box-sizing: border-box;
    display: flex;
    .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 */;
        }
      }
    }
    .menu-right{
      flex: 1;
      padding: 0 0.078125rem  /* 20/256 */;
      box-sizing: border-box;
      height: 5.27344rem;
      @include overflow-y()
 
    }
  }
 
</style>