CustomerManagementInformation.vue 1.7 KB
<template>
  <div class="d-page d-flex flex-column">
    <title-bar title="客户经营信息" @clickLeft="onClick">
      <van-icon slot="left" name="cross" size="24" />
    </title-bar>
    <div class="information-container h-scroller flex-1-dhc">
      <van-index-bar highlight-color="#F79400" :index-list="indexList">
        <van-index-anchor index="发行股票信息">
          <sub-title>发行股票信息</sub-title>
        </van-index-anchor>
        <issuance-of-stock-information></issuance-of-stock-information>
        <van-index-anchor index="项目信息">
          <sub-title>项目信息</sub-title>
        </van-index-anchor>
        <project-information></project-information>
      </van-index-bar>
    </div>
  </div>
</template>

<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
import TitleBar from "@/components/general/TitleBar.vue";
import IssuanceOfStockInformation from "@/components/customer-information/business-application-status/customer-management-information/IssuanceOfStockInformation.vue";
import ProjectInformation from "@/components/customer-information/business-application-status/customer-management-information/ProjectInformation.vue";
/**
 * @Description 客户经营信息
 * @Author JiangTao
 * @Date 2021-11-10 下午 03:16
 */
@Component({
  name: "CustomerManagementInformation",
  components: { TitleBar, IssuanceOfStockInformation, ProjectInformation },
})
export default class CustomerManagementInformation extends Vue {
  pageTitle = ""; // 页面标题
  indexList = ["发行股票信息", "项目信息"];

  onClick() {
    this.$router.go(-1);
  }
  mounted() {
    this.pageTitle = this.$route.meta?.name;
  }
}
</script>

<style scoped></style>