|
@@ -18,7 +18,7 @@
|
|
|
</div>
|
|
|
<div >
|
|
|
<div class="row header">
|
|
|
- <span class="time">序号</span>
|
|
|
+ <span class="type">序号</span>
|
|
|
<span class="person">区域</span>
|
|
|
<span class="result">风险数(栋)</span>
|
|
|
</div>
|
|
@@ -29,7 +29,7 @@
|
|
|
>
|
|
|
<ul class="item">
|
|
|
<li class="row" v-for="(item, index) in list1" :key="index">
|
|
|
- <span class="time">{{ index+1}}</span>
|
|
|
+ <span class="type">{{ index+1}}</span>
|
|
|
<span class="person">{{ item[0] }}</span>
|
|
|
<span class="result"
|
|
|
:style="{
|
|
@@ -122,7 +122,7 @@
|
|
|
|
|
|
<style scoped lang='less'>
|
|
|
.maintenance-supervision {
|
|
|
- padding: 10px 10px 0px 10px;
|
|
|
+ // padding: 10px 10px 0px 10px;
|
|
|
.maintenance-supervision_header {
|
|
|
border-bottom: 1px solid #154956;
|
|
|
padding-bottom: 2px;
|
|
@@ -163,12 +163,16 @@
|
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
|
.time,
|
|
|
.person,
|
|
|
+ .type,
|
|
|
.result {
|
|
|
flex: 0.33;
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
|
align-items: center;
|
|
|
}
|
|
|
+ .type {
|
|
|
+ flex: 0.15;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</style>
|