detail.vue
1.68 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
<template>
<div>
<NafmHeader title="资质查询" />
<section class="detail_content">
<van-cell-group class="">
<van-cell>
<span slot="title" class="detail_title">{{qulificationDetail.name}}</span>
<span class="org_type">机构类型:{{qulificationDetail.orgType}}</span>
</van-cell>
<van-cell>
<span slot="title" class="label">是否会员</span>
<span class="org_type">是</span>
</van-cell>
<van-cell>
<span slot="title" class="label">会籍类别</span>
<span class="org_type">{{qulificationDetail.memberType}}</span>
</van-cell>
<van-cell>
<span slot="title" class="label">主承销商类型</span>
<span class="org_type">{{qulificationDetail.memberType}}</span>
</van-cell>
<van-cell>
<span slot="title" class="label">做市商</span>
<span class="org_type">{{qulificationDetail.memberType}}</span>
</van-cell>
<van-cell>
<span slot="title" class="label">信用风险缓释工具</span>
<span class="org_type">{{qulificationDetail.memberType}}</span>
</van-cell>
<van-cell>
<span slot="title" class="label">已签署备案主协议</span>
<span class="org_type">{{qulificationDetail.memberType}}</span>
</van-cell>
</van-cell-group>
</section>
</div>
</template>
<script>
export default {
data() {
return {
qulificationDetail: {
name: '中国银行诏安支行',
orgType: 'XXXX',
isMember: true,
memberType: '投资人',
}
}
}
}
</script>
<style lang="less" scoped>
</style>