constructsiteInfo.vue
2.17 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
<template>
<div v-loading="loading">
<el-row class="bd_bottom" >
<el-col :span="6" class="bd_right bd_padding">工地名称</el-col>
<el-col :span="6" class="bd_right bd_padding">{{infoData.name}}</el-col>
<el-col :span="6" class="bd_right bd_padding">施工地址</el-col>
<el-col :span="6">{{infoData.address}}</el-col>
</el-row>
<el-row class="bd_bottom">
<el-col :span="6" class="bd_right bd_padding">所在区域</el-col>
<el-col :span="6" class="bd_right bd_padding">{{infoData.areaCodeName}}</el-col>
<el-col :span="6" class="bd_right bd_padding">作业区域</el-col>
<el-col :span="6">{{infoData.workAreaCodeName}}</el-col>
</el-row>
<el-row class="bd_bottom">
<el-col :span="6" class="bd_right bd_padding">建设单位</el-col>
<el-col :span="6" class="bd_right bd_padding">{{infoData.constructionCompany}}</el-col>
<el-col :span="6" class="bd_right bd_padding">负责人</el-col>
<el-col :span="6">{{infoData.constructionCompanyPerson}}</el-col>
</el-row>
<el-row class="bd_bottom">
<el-col :span="6" class="bd_right bd_padding">施工单位</el-col>
<el-col :span="6" class="bd_right bd_padding">{{infoData.projectCompany}}</el-col>
<el-col :span="6" class="bd_right bd_padding">现场责任人</el-col>
<el-col :span="6">{{infoData.projectCompanyPerson}}</el-col>
</el-row>
<el-row class="bd_bottom">
<el-col :span="6" class="bd_right bd_padding">运输单位</el-col>
<el-col :span="6" class="bd_right bd_padding">{{infoData.transportCompany}}</el-col>
<el-col :span="6" class="bd_right bd_padding">负责人</el-col>
<el-col :span="6">{{infoData.transportCompanyPerson}}</el-col>
</el-row>
</div>
</template>
<script src="../../../api/constructionInfo">
<style>
.bd_padding{
padding:5px;
}
.bd_right {
border-right: 1px solid black;
}
.bd_left {
border-left: 1px solid black;
}
.bd_top {
border-top: 1px solid black;
}
.bd_bottom {
border-bottom: 1px solid black;
}
</style>