<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:20
 */
@Component({
  name: "IssuanceOfStockInformation",
})
export default class IssuanceOfStockInformation extends Vue {}
</script>

<style scoped></style>