zhangxiaoxu123456
2022-04-11 2fad1ef7d526569e2595f46e6b2e0a1a2f2467a6
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
<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: 8rem;
      margin: 3rem 0;
    }
    .el-menu-item{
      background:url("../../../assets/images/jiuye-menu-normal.png") no-repeat center;
      background-size: 100% 100%;
      width: 19.2rem;
      height: 8rem;
    }
    .el-menu-item.is-active{
      background:url("../../../assets/images/jiuye-menu-active.png") no-repeat center;
      background-size: 100% 100%;
      width: 19.2rem;
      height: 8rem;
    }
  }
 
</style>
<style lang="scss" scoped>
  @import "../../../assets/css/base";
  @import "../../../assets/css/mixin";
  .jiuyeAndChuangye-wrap{
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    .menu-left{
      width: 24rem  /* 240/10 */;
      height: 124.9rem  /* 1249/10 */;
      background:url("../../../assets/images/jiuye-menu-bj.png") no-repeat center;
      background-size: 100% 100%;
      padding: 4rem 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: 8rem;
        }
      }
    }
    .menu-right{
      flex: 1;
      padding: 0 2rem  /* 20/10 */;
      box-sizing: border-box;
      @include overflow-y(140rem)
    }
  }
 
</style>