<template>
  <div class="customer-management-information-content h-scroller">
    <table class="customer-management-information-form">
      <tr>
        <td style="width: 90px">关联关系</td>
        <td style="width: 90px">关系细类</td>
        <td style="width: 90px">客户名称</td>
        <td style="width: 90px">业务品种</td>
        <td style="width: 80px">币种</td>
        <td style="width: 120px">借据金额(元)</td>
        <td style="width: 120px">借据余额(元)</td>
        <td style="width: 80px">笔数</td>
        <td style="width: 90px">风险分类</td>
        <td style="width: 90px">放款日期</td>
        <td style="width: 90px">到期日期</td>
        <td style="width: 90px">贷款形式</td>
        <td style="width: 80px">担保</td>
        <td style="width: 90px">是否展期</td>
      </tr>
      <tr>
        <td></td>
        <td></td>
        <td>无数据</td>
        <td></td>
        <td></td>
        <td></td>
        <td></td>
        <td></td>
        <td></td>
        <td></td>
        <td></td>
        <td></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:23
 */
@Component({
  name: "Credit",
})
export default class Credit extends Vue {}
</script>

<style scoped>
.customer-management-information-form {
  width: 1290px;
}
.customer-management-information-content::-webkit-scrollbar {
  width: 5px;
  height: 12px;
}
</style>