<template>
  <div class="content">
    <table class="customer-management-information-form">
      <tr>
        <td>序号</td>
        <td>质权出质设立登记日期</td>
        <td>出质人姓名</td>
        <td>出质人证件号码</td>
        <td>出质人股权数额</td>
        <td>质权人姓名</td>
        <td>状态</td>
      </tr>
      <tr>
        <td>1</td>
        <td>2011-06-20</td>
        <td>张子怡</td>
        <td>610321199803160423</td>
        <td>40,000</td>
        <td>承泽生</td>
        <td></td>
      </tr>
      <tr>
        <td>2</td>
        <td>2011-06-20</td>
        <td>张子怡</td>
        <td>610321199803160423</td>
        <td>40,000</td>
        <td>承泽生</td>
        <td></td>
      </tr>
    </table>
  </div>
</template>

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

<style scoped>
.content {
  width: 97%;
  margin: 0 auto;
}
</style>