ApplicationStatusForm.vue 925 字节
<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>
        </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: "ApplicationStatusForm",
})
export default class ApplicationStatusForm extends Vue {}
</script>

<style scoped></style>