zhangxiaoxu123456
2022-05-05 87cbee9b14970d997c1e5c54b5fef4d04369c968
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
<template>
    <div class="qiyezhigongShebao-wrap">
       <div class="danwei-box">单位:人</div>
       <zhigongShebao :type="1" :dataType="'企业职工养老保险'"></zhigongShebao>
    </div>
</template>
 
<script>
  import zhigongShebao from "../../../components/qiyezhigongShebao/zhigongShebao";
    export default {
        name: "qiyezhigongShebao",
        components: {
            zhigongShebao
        },
        data() {
            return {
            }
        }
    }
</script>
 
<style lang="scss" scoped>
  @import "../../../../assets/css/base";
  .qiyezhigongShebao-wrap{
    width: 100%;
    height: 100%;
    position: relative;
    .danwei-box{
      position: absolute;
      right: 0;
      top: 0;
      color: $color-white;
    }
  }
</style>