PersonalLoan.vue 969 字节
<template>
  <div class="content">
    <div class="customer-management-information-content">
      <table class="customer-management-information-form">
        <tr>
          <td>关系类型</td>
          <td>客户类型</td>
          <td>业务品种</td>
          <td>合同金额(元)</td>
          <td>借据金额(元)</td>
          <td>贷款状态</td>
          <td>风险分类</td>
          <td>所处阶段</td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td>无数据</td>
          <td></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:22
 */
@Component({
  name: "PersonalLoan",
})
export default class PersonalLoan extends Vue {}
</script>

<style scoped></style>