<template>
  <div class="customer-management-information-content">
    <table class="customer-management-information-form">
      <tr>
        <td>序号</td>
        <td>登记编号</td>
        <td style="width: 15%">抵押权人名称</td>
        <td>抵押权人证照证件类型</td>
        <td>抵押权人证照证件号码</td>
        <td style="width: 15%">所在地</td>
      </tr>
      <tr>
        <td>1</td>
        <td>51042019001738</td>
        <td>丰田汽车金融(中国)有限公司</td>
        <td>营业执照</td>
        <td>911100007178536250</td>
        <td>北京市朝阳区东三环中路1号环球金融中心西楼7层</td>
      </tr>
    </table>
  </div>
</template>

<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
/**
 * @Description 动产抵押信息抵押权人信息
 * @Author JiangTao
 * @Date 2021-11-10 下午 04:11
 */
@Component({
  name: "MortgageInformation",
})
export default class MortgageInformation extends Vue {}
</script>

<style scoped></style>