You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

229 lines
8.7 KiB

<template>
<div class="container">
2 months ago
<!-- 顶部信息 -->
<div class="containertop">
<div class="topleft">
2 months ago
<img src="../../../assets/images/detailsicon/1.png" alt="">
<span>基本信息</span>
</div>
<div class="topright">
<el-button type="primary" size="mini" plain style="border: none;background-color: rgba(43,98,241,0.1);color: #2B62F1;">
<img src="../../../assets/images/detailsicon/icon-bj@2x.png" alt="编辑" style="width: 0.6rem; height: 0.6rem; margin-right: 4px;">
编辑
</el-button>
<el-button type="primary" size="mini" plain style="border: none;background-color: rgba(43,98,241,0.1);color: #2B62F1;">
<img src="../../../assets/images/detailsicon/icon-dc@2x.png" alt="编辑" style="width: 0.6rem; height: 0.6rem; margin-right: 4px;">
导出
</el-button>
2 months ago
</div>
</div>
<!-- 内容区 -->
<div class="content">
<div class="picturediv"></div>
2 months ago
<div class="descriptionsdiv">
<el-descriptions class="margin-top" :column="3" border>
2 months ago
<el-descriptions-item>
<template slot="label">
项目名称
</template>
THi SIP高端装备工业港
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
项目法人单位
</template>
泰凌医药中国)有限公司
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
项目法人单位性质
</template>
项目法人单位性质
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
施工单位
</template>
kooriookami
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
设计单位
</template>
18100000000
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
总投资额万元
</template>
苏州市
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
所属功能区
</template>
kooriookami
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
建设起止时间
</template>
18100000000
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
现状分类
</template>
苏州市
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
建设地点
</template>
kooriookami
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
重点发展产业
</template>
18100000000
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
建设模式
</template>
苏州市
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
项目标签
</template>
kooriookami
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
项目负责人
</template>
18100000000
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
联系方式
</template>
苏州市
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
施工许可证发放时间
</template>
kooriookami
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
竣工验收时间
</template>
18100000000
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
</template>
</el-descriptions-item>
<!-- 最后一行 -->
<el-descriptions-item class="two-row-item" :span="3">
<template slot="label">
项目法人单位简介
</template>
江苏省苏州市吴中区吴中大道 1188 号江苏省苏州市吴中区吴中大道 1188
江苏省苏州市吴中区吴中大道 1188 号江苏省苏州市吴中区吴中大道 1188
江苏省苏州市吴中区吴中大道 1188 号江苏省苏州市吴中区吴中大道 1188
</el-descriptions-item>
<el-descriptions-item class="two-row-item" :span="3">
<template slot="label">
项目简介
</template>
江苏省苏州市吴中区吴中大道 1188 号江苏省苏州市吴中区吴中大道 1188
江苏省苏州市吴中区吴中大道 1188 号江苏省苏州市吴中区吴中大道 1188
江苏省苏州市吴中区吴中大道 1188 号江苏省苏州市吴中区吴中大道 1188
</el-descriptions-item>
</el-descriptions>
</div>
</div>
</div>
</template>
<script>
export default {
props: {
size: {
type: String,
default: 'mini'
}
},
}
</script>
<style scoped>
.container {
display: flex;
flex-direction: column;
width: 100%;
2 months ago
background-color: #FFFFFF;
box-shadow: 0rem 0.13rem 0.63rem 0rem rgba(177, 177, 177, 0.1);
border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
}
.content {
padding: 1rem;
display: flex;
}
.containertop {
height: auto;
display: flex;
justify-content: space-between;
padding: .7rem 0;
padding: .5rem;
border-bottom: 1px solid #E5E5E5;
}
.topleft {
width: 8rem;
display: flex;
gap: 0.4rem;
align-items: center;
}
.topleft img {
width: 0.81rem;
height: 0.81rem;
}
.topleft span {
width: auto;
height: 0.88rem;
font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
font-weight: 500;
font-size: 0.88rem;
color: #3D424C;
line-height: 0.88rem;
text-align: right;
font-style: normal;
text-transform: none;
}
.picturediv {
width: 18.31rem;
height: 25rem;
2 months ago
background-color: lightblue;
}
.descriptionsdiv{
width: 79rem;
margin-left: 1rem;
height: 25.31rem;
}
.two-row-item{
height: 20rem;
}
</style>