IssuedStockInfo.vue 788 字节
<template>
  <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>1</td>
        <td>官网</td>
        <td>攀枝花</td>
        <td>123</td>
      </tr>
    </table>
  </div>
</template>

<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
/**
 * @Description 发行股票信息
 * @Author JiangTao
 * @Date 2022-01-04 下午 03:52
 */
@Component({
  name: "IssuedStockInfo",
})
export default class IssuedStockInfo extends Vue {}
</script>

<style scoped></style>