2022-10-17 10:13:22 +08:00
|
|
|
<template>
|
|
|
|
|
<Card title="基本信息">
|
|
|
|
|
<div class="contentBox">
|
|
|
|
|
<p class="row">
|
2022-10-21 14:21:27 +08:00
|
|
|
<span>项目位置:</span>
|
2022-10-17 10:13:22 +08:00
|
|
|
<a>{{list.projectAddress}}</a>
|
|
|
|
|
</p>
|
|
|
|
|
<p class="row">
|
2022-10-21 14:21:27 +08:00
|
|
|
<span>用地面积:</span>
|
2022-10-17 10:13:22 +08:00
|
|
|
<a>{{list.projectAcreage}}㎡</a>
|
|
|
|
|
</p>
|
|
|
|
|
<p class="row">
|
2022-10-21 14:21:27 +08:00
|
|
|
<span>建设单位:</span>
|
2022-10-17 10:13:22 +08:00
|
|
|
<a>{{list.constructionUnit}}</a>
|
|
|
|
|
</p>
|
|
|
|
|
<p class="row">
|
2022-10-21 14:21:27 +08:00
|
|
|
<span>设计单位:</span>
|
2022-10-17 10:13:22 +08:00
|
|
|
<a>{{list.designUnit}}</a>
|
|
|
|
|
</p>
|
|
|
|
|
<p class="row">
|
2022-10-21 14:21:27 +08:00
|
|
|
<span>勘察单位:</span>
|
2022-10-17 10:13:22 +08:00
|
|
|
<a>{{list.exploreUnit}}</a>
|
|
|
|
|
</p>
|
|
|
|
|
<p class="row">
|
2022-10-21 14:21:27 +08:00
|
|
|
<span>监理单位:</span>
|
2022-10-17 10:13:22 +08:00
|
|
|
<a>{{list.supervisorUnit}}</a>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</Card>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import Card from "../components/Card.vue";
|
|
|
|
|
import { listProjectInfo } from '@/assets/js/api/zhongjianFourth'
|
|
|
|
|
export default {
|
|
|
|
|
components: { Card },
|
|
|
|
|
data(){
|
|
|
|
|
return{
|
|
|
|
|
list:{
|
2022-10-21 14:21:27 +08:00
|
|
|
projectAddress:'建宁路与热河交叉路口',
|
|
|
|
|
projectAcreage:'112768.21㎡',
|
|
|
|
|
constructionUnit:"中建四局发展(广州天河)有限公司",
|
|
|
|
|
designUnit:"中国建筑第四工程局有限公司",
|
|
|
|
|
exploreUnit:"贵州中建建筑科研设计院有限公司",
|
|
|
|
|
supervisorUnit:"广州宏元建设工程咨询有限公司",
|
2022-10-17 10:13:22 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
created(){
|
2022-10-21 14:21:27 +08:00
|
|
|
// this.getData();
|
2022-10-17 10:13:22 +08:00
|
|
|
},
|
|
|
|
|
methods:{
|
2022-10-21 14:21:27 +08:00
|
|
|
// getData(){
|
|
|
|
|
// listProjectInfo({projectSn: this.$store.state.projectSn}).then((res)=>{
|
|
|
|
|
// console.log('========',res)
|
|
|
|
|
// this.list = res.result
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2022-10-17 10:13:22 +08:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.contentBox {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 90%;
|
|
|
|
|
overflow: auto;
|
2022-10-21 14:21:27 +08:00
|
|
|
margin-top: 1%;
|
2022-10-17 10:13:22 +08:00
|
|
|
.row {
|
|
|
|
|
height: 35px;
|
|
|
|
|
line-height: 35px;
|
|
|
|
|
margin-top: 3px;
|
|
|
|
|
span {
|
|
|
|
|
margin-left: 10%;
|
|
|
|
|
color: white;
|
|
|
|
|
width: 25%;
|
2022-10-21 14:21:27 +08:00
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 500;
|
2022-10-17 10:13:22 +08:00
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
a {
|
2022-10-21 14:21:27 +08:00
|
|
|
color: white;
|
2022-10-17 10:13:22 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
width: 3px;
|
|
|
|
|
color: #182337;
|
|
|
|
|
}
|
|
|
|
|
</style>
|