平台专区部分代码
parent
c3f1d01ef0
commit
bed1e2a5a1
Binary file not shown.
After Width: | Height: | Size: 395 B |
Binary file not shown.
After Width: | Height: | Size: 507 B |
Binary file not shown.
After Width: | Height: | Size: 273 B |
Binary file not shown.
After Width: | Height: | Size: 640 B |
Binary file not shown.
After Width: | Height: | Size: 295 B |
Binary file not shown.
After Width: | Height: | Size: 269 B |
@ -0,0 +1,68 @@
|
||||
|
||||
<template>
|
||||
<div >
|
||||
<el-row class="info-list">
|
||||
<el-col :span="12" class="info-item" v-for="(item,index) in dataList" :key="index">
|
||||
<div class="content flx-justify-between " style="margin-right: 30px;">
|
||||
<div class="title">
|
||||
<img :src="item.img" alt="">
|
||||
{{item.title}}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</el-col>
|
||||
|
||||
<!-- 更多 .info-item -->
|
||||
</el-row>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
|
||||
|
||||
/**
|
||||
* Index-1 component
|
||||
*/
|
||||
export default {
|
||||
name:"KYC",
|
||||
components: {
|
||||
},
|
||||
data(){
|
||||
return {
|
||||
dataList:[
|
||||
{
|
||||
title:"公司营业执照彩色扫描件",
|
||||
img:require("@/assets/icons/platform/platformIcon1.png"),
|
||||
},
|
||||
{
|
||||
title:"公司首要联系人和受益人的身份证件",
|
||||
img:require("@/assets/icons/platform/platformIcon2.png")
|
||||
},
|
||||
{
|
||||
title:"首要联系人和受益人的个人费用账单",
|
||||
img:require("@/assets/icons/platform/platformIcon1.png"),
|
||||
},
|
||||
{
|
||||
title:"补充材料",
|
||||
img:require("@/assets/icons/platform/platformIcon2.png")
|
||||
},
|
||||
{
|
||||
title:"公司章程",
|
||||
img:require("@/assets/icons/platform/platformIcon1.png"),
|
||||
},
|
||||
{
|
||||
title:"银行账户所有人证明",
|
||||
img:require("@/assets/icons/platform/platformIcon2.png")
|
||||
},
|
||||
{
|
||||
title:"授权函(如首要联系人非公司法人或者受益人时提供)",
|
||||
img:require("@/assets/icons/platform/platformIcon1.png"),
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
}
|
||||
};
|
||||
</script>
|
||||
<style src="./componentsIndex.css" scoped></style>
|
@ -0,0 +1,45 @@
|
||||
|
||||
<template>
|
||||
<div >
|
||||
<el-row class="info-list">
|
||||
<el-col :span="24" class="info-item" v-for="(item,index) in dataList" :key="index">
|
||||
<div class="content flx-justify-between " style="margin-right: 30px;">
|
||||
<div class="title">
|
||||
<img :src="item.img" alt="">
|
||||
{{item.title}}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</el-col>
|
||||
|
||||
<!-- 更多 .info-item -->
|
||||
</el-row>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
|
||||
|
||||
/**
|
||||
* Index-1 component
|
||||
*/
|
||||
export default {
|
||||
name:"accountAudit",
|
||||
components: {
|
||||
},
|
||||
data(){
|
||||
return {
|
||||
dataList:[
|
||||
{
|
||||
title:"公司或法人名 下的公共事业账单(水费、电费、天然气/煤气或互联网服务任一项",
|
||||
img:require("@/assets/icons/platform/platformIcon1.png"),
|
||||
},
|
||||
|
||||
]
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
}
|
||||
};
|
||||
</script>
|
||||
<style src="./componentsIndex.css" scoped></style>
|
@ -0,0 +1,60 @@
|
||||
.info-list {
|
||||
padding: 20px;
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.info-item {
|
||||
display: flex;
|
||||
height: 159px;
|
||||
align-items: center;
|
||||
border-bottom: 1px solid #eaecef;
|
||||
}
|
||||
.info-item:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
.icon {
|
||||
font-size: 24px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.content {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.title {
|
||||
color: #151E2C;
|
||||
font-size: 20px;
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
line-height: 42px; /* 210% */
|
||||
}
|
||||
.title > img {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
#description {
|
||||
padding-right: 30px;
|
||||
width: 470px;
|
||||
color: rgba(21, 30, 44, 0.50);
|
||||
font-size: 18px;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
line-height: 32px; /* 177.778% */
|
||||
word-wrap: break-word; /* 兼容旧版本浏览器 */
|
||||
overflow-wrap: break-word; /* 标准语法 */
|
||||
}
|
||||
.annotationTitle {
|
||||
color: rgba(21, 30, 44, 0.50);
|
||||
font-size: 18px;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
line-height: 28px; /* 155.556% */
|
||||
}
|
||||
.annotationContent {
|
||||
color: rgba(21, 30, 44, 0.50);
|
||||
font-size: 14px;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
line-height: 28px;
|
||||
}
|
Loading…
Reference in New Issue