zhangxiaoxu123456
2022-04-13 b0e391f5488aead9e56dc725b69cd81ba36f917d
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
<template>
  <div class="shiyeBaoxian-wrap">
    <div class="danwei-box">单位:人</div>
    <baoxianForm></baoxianForm>
  </div>
</template>
 
<script>
    import baoxianForm from "../../../components/juminYanglaoBaoxian/baoxianForm";
    export default {
        name: "juminYanglaoBaoxian",
        components: {
            baoxianForm
        },
        data() {
            return {
 
            }
        }
    }
</script>
 
<style lang="scss" scoped>
  @import "../../../../assets/css/base";
  .shiyeBaoxian-wrap{
    width: 100%;
    height: 100%;
    position: relative;
    .danwei-box{
      position: absolute;
      right: 0;
      top: 0;
      color: $color-white;
    }
  }
</style>