FreezeHistory.vue 885 字节
<template>
  <div class="customer-management-information-content">
    <table class="customer-management-information-form">
      <tr>
        <td>序号</td>
        <td>冻结起始日期</td>
        <td>冻结截止日期</td>
        <td style="width: 25%">冻结文号</td>
        <td>冻结机关</td>
        <td>冻结金额(万元)</td>
      </tr>
      <tr>
        <td>1</td>
        <td>2011-06-20</td>
        <td>2011-06-20</td>
        <td>51042019001738</td>
        <td>西安市某某机关</td>
        <td>40,000</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: "FreezeHistory",
})
export default class FreezeHistory extends Vue {}
</script>

<style scoped></style>