<template>
  <div class="customer-management-information-content">
    <table class="customer-management-information-form">
      <tr>
        <td>险种</td>
        <td>参保人数</td>
        <td>缴费基数</td>
        <td>本期实际缴费金额</td>
        <td>累计欠缴金额</td>
      </tr>
      <tr>
        <td>城镇职工基本养老保险</td>
        <td>35</td>
        <td>346</td>
        <td>346</td>
        <td>0</td>
      </tr>
      <tr>
        <td>失业保险</td>
        <td>35</td>
        <td>346</td>
        <td>346</td>
        <td>0</td>
      </tr>
      <tr>
        <td>职工基本医疗保险</td>
        <td>35</td>
        <td>346</td>
        <td>346</td>
        <td>0</td>
      </tr>
      <tr>
        <td>工伤保险</td>
        <td>35</td>
        <td>346</td>
        <td>346</td>
        <td>0</td>
      </tr>
    </table>
  </div>
</template>

<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
import nettyApi from '@/constants/api/ms-netty/netty.api';
import { NativeUI } from '@/public/ts/NativeUI';
import Public from '@/public/ts/Public';
import IF from "@/public/factory/InterFaceFactory";
/**
 * @Description 年报-社会保险信息(2020)
 * @Author JiangTao
 * @Date 2021-11-10 下午 04:12
 */
@Component({
  name: "SocialInsuranceInformation",
})
export default class SocialInsuranceInformation extends Vue {
  title = '年报信息';
  time = 0;
  activated() {
    // this.getNbInfo();
  }
}
</script>

<style scoped></style>