zhangxiaoxu123456
2022-04-24 31181a5ed1e8cb393ad90fd19f6baea72b3cc423
就业创业细节
7个文件已修改
72 ■■■■ 已修改文件
src/pages/components/jiuyeQingkuang/chengzhenXinzengJiuye.vue 14 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/show/jiuyeAndChuangye/jiuyeAndChuangye.vue 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/show/jiuyeAndChuangye/jiuyeChildren/biyeshengStatistics.vue 15 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/show/jiuyeAndChuangye/jiuyeChildren/chuangyeDanbaoDaikuan.vue 15 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/show/jiuyeAndChuangye/jiuyeChildren/workStatistics.vue 17 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/show/jiuyeAndChuangye/jiuyeChildren/zhiyePeixun.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/show/shehuiBaozhang/shehuiBaozhangChildren/shehuiBaoxian.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/components/jiuyeQingkuang/chengzhenXinzengJiuye.vue
@@ -1,6 +1,7 @@
<template>
    <div class="chengzhenXinzengJiuye-wrap">
      <el-table
        :max-height="tableHeight"
        border
        :data="tableData"
        :header-cell-style="handleheader"
@@ -193,7 +194,7 @@
</template>
<script>
   import nowSize from "../../../libs/nowSize";
    export default {
        name: "chengzhenXinzengJiuye",
        props: {
@@ -206,7 +207,7 @@
        },
        data() {
            return {
                tableHeight: window.innerHeight - nowSize(350)
            }
        },
        mounted() {
@@ -216,7 +217,16 @@
                return {
                    lineHeight: '2.5',
                }
            },
            getHeight() {
                this.tableHeight = window.innerHeight - nowSize(230)
            }
        },
        created() {
            window.addEventListener('resize', this.getHeight)
        },
        destroyed() {
            window.addEventListener('resize', this.getHeight)
        }
    }
</script>
src/pages/show/jiuyeAndChuangye/jiuyeAndChuangye.vue
@@ -77,6 +77,7 @@
    padding: 0.078125rem  /* 20/256 */;
    box-sizing: border-box;
    display: flex;
    height: calc(100% - 0.390625rem  /* 100/256 */);
    .menu-left{
      width: 0.9375rem  /* 240/256 */;
      height: 5.2734375rem  /* 1350/256 */;
@@ -99,12 +100,10 @@
      }
    }
    .menu-right{
      flex: 1;
      width: calc(100% - 0.9375rem);
      padding: 0 0.078125rem  /* 20/256 */;
      box-sizing: border-box;
      height: 5.27344rem;
      @include overflow-y()
      height: 100%;
    }
  }
src/pages/show/jiuyeAndChuangye/jiuyeChildren/biyeshengStatistics.vue
@@ -253,6 +253,7 @@
        </tbody>
      </table>-->
      <el-table
        :height="tableHeight"
        :data="tableData"
        :span-method="objectSpanMethod"
        :cell-style="cellClass"
@@ -302,6 +303,7 @@
</template>
<script>
  import nowSize from "../../../../libs/nowSize";
  import {getGraduateTable} from '@/api/jiuyeAndChuangye'
    export default {
        name: "biyeshengStatistics",
@@ -309,7 +311,8 @@
            return {
                tableData: [],
                heardArry: [],
                rowIndexArr: []//存储合并单元格的开始位置
                rowIndexArr: [],//存储合并单元格的开始位置
                tableHeight: window.innerHeight - nowSize(230)
            }
        },
        mounted() {
@@ -403,8 +406,15 @@
                document.querySelector('.getTextWidth').remove()
                return width
            },
            getHeight() {
                this.tableHeight = window.innerHeight - nowSize(230)
            }
        },
        watch: {
        created() {
            window.addEventListener('resize', this.getHeight)
        },
        destroyed() {
            window.addEventListener('resize', this.getHeight)
        }
    }
</script>
@@ -474,7 +484,6 @@
.biyeshengStatistics-wrap{
  width: 100%;
  height: 100%;
  overflow-y: auto;
  .biyeshengStatistics-table{
    width: 100%;
    border: 1Px solid $color-grey; /*no*/
src/pages/show/jiuyeAndChuangye/jiuyeChildren/chuangyeDanbaoDaikuan.vue
@@ -4,6 +4,7 @@
         <h1>创业担保贷款统计表</h1>
         <div class="chuangye-table">
           <el-table
             :max-height="tableHeight"
             border
             :data="danbaoTableData"
             style="width: 100%">
@@ -78,6 +79,7 @@
        <h1>人力资源服务产业园当月情况统计表</h1>
        <div class="danbaotongjibiao-table">
          <el-table
            :max-height="tableHeight"
            border
            :data="renliziyuanTableData"
            :span-method="arraySpanMethod"
@@ -170,12 +172,14 @@
<script>
  import {getLoanTable, getParkTable} from '@/api/jiuyeAndChuangye'
  import nowSize from "../../../../libs/nowSize";
    export default {
        name: "chuangyeDanbaoDaikuan",
        data() {
            return {
                danbaoTableData:[],
                renliziyuanTableData:[]
                renliziyuanTableData:[],
                tableHeight: (window.innerHeight - nowSize(400)) / 2
            }
        },
        mounted() {
@@ -211,7 +215,16 @@
                        }
                    }
                }
            },
            getHeight() {
                this.tableHeight = (window.innerHeight - nowSize(400)) / 2
            }
        },
        created() {
            window.addEventListener('resize', this.getHeight)
        },
        destroy() {
            window.addEventListener('resize', this.getHeight)
        }
    }
</script>
src/pages/show/jiuyeAndChuangye/jiuyeChildren/workStatistics.vue
@@ -4,7 +4,7 @@
        <h1>劳动就业统计表</h1>
        <div class="danwei-box">单位:人</div>
        <el-table
          :max-height="640"
          :max-height="tableHeight"
          :data="tableData"
          :header-cell-style="handleheader"
          stripe
@@ -110,6 +110,7 @@
                loseReEmployment:[], //失业人员再就业
                diffReEmployment: [],  //就业困难人员再就业
                xdata:[],
                tableHeight: window.innerHeight - nowSize(1000)
            }
        },
        mounted() {
@@ -198,7 +199,8 @@
                            show: true,
                            textStyle: {
                                color: "#fff",
                                fontSize:nowSize(24)
                                fontSize:nowSize(24),
                                lineHeight: nowSize(56)
                            }
                        },
                        axisLine: {
@@ -260,6 +262,15 @@
                return {
                    lineHeight: '0',
                }
            },
            getHeight() {
                this.tableHeight = window.innerHeight - nowSize(1000)
            },
            created() {
                window.addEventListener('resize', this.getHeight)
            },
            destroy() {
                window.addEventListener('resize', this.getHeight)
            }
        }
    }
@@ -328,7 +339,7 @@
       }
     }
    .laogongJiuyeEcharts{
      height: calc(100% - 640px - 0.33203125rem  /* 85/256 */);
      height: calc(100% - 2.34375rem  /* 600/256 */ - 0.33203125rem  /* 85/256 */);
    }
  }
</style>
src/pages/show/jiuyeAndChuangye/jiuyeChildren/zhiyePeixun.vue
@@ -4,7 +4,7 @@
      stripe
      border
      :data="tableData"
      max-height="640"
      max-height="tableHeight"
      :header-cell-style="handleheader"
      style="width: 100%">
      <el-table-column
@@ -78,6 +78,7 @@
                yearsData: [],  //x轴数据
                numberData: [],  //柱状图数据(实际培训人数)
                rateData: [],  //折线数据(完成率)
                tableHeight: window.innerHeight - nowSize(1000)
            }
        },
        mounted() {
src/pages/show/shehuiBaozhang/shehuiBaozhangChildren/shehuiBaoxian.vue
@@ -4,7 +4,6 @@
      <h1>社会保险参保人员统计表</h1>
        <div class="danwei-box">单位:万人</div>
      <el-table
        max-height="640"
        :data="tableData"
        :header-cell-style="handleheader"
        stripe