zhangxiaoxu123456
2022-04-11 2fad1ef7d526569e2595f46e6b2e0a1a2f2467a6
职业培训
6个文件已修改
2个文件已添加
50 ■■■■■ 已修改文件
src/assets/css/base.scss 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/assets/css/mixin.scss 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/show/index/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/show/jiuyeAndChuangye/jiuyeAndChuangye.vue 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/show/jiuyeAndChuangye/jiuyeChildren/biyeshengStatistics.vue 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/show/jiuyeAndChuangye/jiuyeChildren/zhiyePeixun.vue 15 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/show/shehuiBaozhang/shehuiBaozhangChildren/shehuiBaoxian.vue 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/router/router.js 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/assets/css/base.scss
@@ -12,3 +12,5 @@
$color-dark: #05336A;
$color-grey:#8E8E8E;
$color-darkGrey:#111111;
src/assets/css/mixin.scss
New file
@@ -0,0 +1,6 @@
@mixin overflow-y($h) {
   max-height: $h;
   overflow-y: auto;
   touch-action: pan-y;
   -webkit-overflow-scrolling: touch;
}
src/pages/show/index/index.vue
@@ -738,6 +738,7 @@
</script>
<style lang="scss" scoped>
  @import "../../../assets/css/base";
  @import "../../../assets/css/mixin";
  .index-wrap{
    width: 100%;
    height: 100%;
@@ -963,8 +964,7 @@
          }
          .shuju-scroll{
            height: 28rem  /* 280/10 */;
            overflow-y: auto;
            @include overflow-y(28rem)
          }
          .shuju-table-line2{
            width: 100%;
src/pages/show/jiuyeAndChuangye/jiuyeAndChuangye.vue
@@ -22,7 +22,7 @@
              <h1>毕业生统计</h1>
            </div>
          </el-menu-item>
          <el-menu-item>
          <el-menu-item index="/zhiyePeixun">
            <div class="menu-left-block">
              <h1>职业培训</h1>
            </div>
@@ -68,6 +68,7 @@
</style>
<style lang="scss" scoped>
  @import "../../../assets/css/base";
  @import "../../../assets/css/mixin";
  .jiuyeAndChuangye-wrap{
    width: 100%;
    padding: 2rem;
@@ -95,6 +96,7 @@
      flex: 1;
      padding: 0 2rem  /* 20/10 */;
      box-sizing: border-box;
      @include overflow-y(140rem)
    }
  }
src/pages/show/jiuyeAndChuangye/jiuyeChildren/biyeshengStatistics.vue
@@ -266,6 +266,7 @@
.biyeshengStatistics-wrap{
  width: 100%;
  height: 100%;
  overflow-y: auto;
  .biyeshengStatistics-table{
    width: 100%;
    border: 1px solid $color-grey; /*no*/
@@ -285,6 +286,8 @@
    }
    tbody{
      background-color: #CEF2FF;
      height: 100rem;
      overflow-y: auto;
      tr{
        height: 5.2rem;
      }
src/pages/show/jiuyeAndChuangye/jiuyeChildren/zhiyePeixun.vue
New file
@@ -0,0 +1,15 @@
<template>
    <div class="zhiyePeixun-wrap">
    </div>
</template>
<script>
    export default {
        name: "zhiyePeixun"
    }
</script>
<style lang="css" scoped>
</style>
src/pages/show/shehuiBaozhang/shehuiBaozhangChildren/shehuiBaoxian.vue
@@ -134,6 +134,7 @@
</script>
<style lang="scss">
  @import "../../../../assets/css/base";
  .shehuiBaoxian-table{
    .el-table tr{
      background-color: #CEF2FF;
@@ -162,6 +163,12 @@
    .el-table__body tr.hover-row.current-row>td.el-table__cell, .el-table__body tr.hover-row.el-table__row--striped.current-row>td.el-table__cell, .el-table__body tr.hover-row.el-table__row--striped>td.el-table__cell, .el-table__body tr.hover-row>td.el-table__cell{
      background: transparent;
    }
    .el-table .cell{
      font-size: $fontSize-28;
      color: $color-darkGrey;
      font-weight: 300;
      line-height: 1;
    }
  }
</style>
<style lang="scss" scoped>
src/router/router.js
@@ -55,6 +55,15 @@
            import(
              "@/pages/show/jiuyeAndChuangye/jiuyeChildren/biyeshengStatistics.vue"
            )
        },
        {
          path: "/zhiyePeixun",
          meta: { title: "职业培训"},
          name: "zhiyePeixun",
          component: () =>
            import(
              "@/pages/show/jiuyeAndChuangye/jiuyeChildren/zhiyePeixun.vue"
              )
        }
      ]
    },