1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<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>