RegistrationInformation.vue 1008 字节
<template>
  <div class="customer-management-information-content">
    <table class="customer-management-information-form">
      <tr>
        <td>序号</td>
        <td>登记编号</td>
        <td style="width: 40%">担保范围</td>
        <td>履行债务开始日期</td>
        <td>履行债务结束日期</td>
      </tr>
      <tr>
        <td>1</td>
        <td>51042019001738</td>
        <td>主债权、融资及浮动抵押协议项下的各种费用和收费、违约金、损害赔偿现债权所发生的全部费用现债权所发生的全部费用</td>
        <td>2011-06-20</td>
        <td>2011-06-20</td>
      </tr>
    </table>
  </div>
</template>

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

<style scoped></style>