<template>
  <div class="customer-management-information-content">
    <div class="customer-management-information-form-title">
      <div></div>
      <div>清算信息</div>
    </div>
    <div>
      <table class="customer-management-information-form">
        <tr>
          <td>序号</td>
          <td>清算负责人</td>
          <td>清算组成员</td>
        </tr>
        <tr>
          <td>1</td>
          <td>陈文文</td>
          <td>承泽生</td>
        </tr>
        <tr>
          <td>2</td>
          <td>安建辉</td>
          <td>杨晓书</td>
        </tr>
      </table>
    </div>
  </div>
</template>

<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
/**
 * @Description 处罚信息
 * @Author JiangTao
 * @Date 2021-11-10 下午 04:09
 */
@Component({
  name: "LiquidationInformation",
})
export default class LiquidationInformation extends Vue {}
</script>

<style scoped></style>