DetailBasicInfo.vue
2.03 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<template>
<div class="basic_content">
<p>
<span class="item_title">企业名称</span>
<span class="item_info">
<ToggleArrowContent :content="detail.companyName" />
</span>
</p>
<p>
<span class="item_title">品种</span>
<span class="item_info">{{detail.variety}}</span>
</p>
<p>
<span class="item_title">注册或备案</span>
<span class="item_info">{{detail.record}}</span>
</p>
<p>
<span class="item_title">注册金额(亿元)</span>
<span class="item_info">{{detail.registeredCapital}}</span>
</p>
<p>
<span class="item_title">主承销商</span>
<span class="item_info">{{detail.leadUnderwriter}}</span>
</p>
<p>
<span class="item_title">会计师事务所</span>
<span class="item_info">{{detail.CPAFirm}}</span>
</p>
<p>
<span class="item_title">律师事务所</span>
<span class="item_info">{{detail.lawFirm}}</span>
</p>
<p>
<span class="item_title">注册通知书文号</span>
<span class="item_info">{{detail.registrationNoticeNo}}</span>
</p>
<p>
<span class="item_title">更新日期</span>
<span class="item_info">{{detail.updateTime}}</span>
</p>
</div>
</template>
<script>
import ToggleArrowContent from '@/components/ToggleArrowContent'
export default {
name: 'DetailBasicInfo',
props: {
detail: {
type: Object
}
},
components:{
ToggleArrowContent
}
}
</script>
<style lang="less" scoped>
.basic_content {
margin: 15px 0;
padding: 5px 15px;
border-radius: 8px;
background-color: #ffffff;
box-shadow: 0px 0px 6px 0px rgba(2, 15, 41, 0.06);
p {
display: flex;
align-items: center;
justify-content: space-between;
overflow: hidden;
padding: 8px 0;
font-size: 14px;
.item_title {
color: #666666;
width: 180px;
}
.item_info {
color: #333333;
text-align: right;
width: 200px;
display: flex;
justify-content: flex-end;
}
}
}
</style>