103 lines
2.7 KiB
Vue
103 lines
2.7 KiB
Vue
<template>
|
|
<div class="table_div">
|
|
<div class="table_cur">
|
|
<table>
|
|
<tr>
|
|
<th style="width: 40px;">
|
|
序号
|
|
</th>
|
|
<th style="width: 80px">时间</th>
|
|
<th style="width: 80px;">
|
|
雨量(mm)
|
|
</th>
|
|
<th style="width: 90px;">
|
|
水位(m)
|
|
</th>
|
|
<th style="width: 80px; position: relative;">
|
|
<view>
|
|
转换流量<br>
|
|
<text style="position: absolute; bottom:-10px; left: 20px;">(m³/s)</text>
|
|
</view>
|
|
</th>
|
|
</tr>
|
|
<div style="max-height: 480px; overflow-y: auto">
|
|
<tr v-for="(item, index) in newList" :key="index">
|
|
<td style="width: 30px">{{ index + 1 }}</td>
|
|
<td style="width: 80px;">{{ item.tm }}</td>
|
|
<td style="width: 80px">{{ item.drp }}</td>
|
|
<td style="width: 100px">{{ item.z ? item.z.toFixed(2) : "-" }}</td>
|
|
<td style="width: 80px">{{ item.tq ? item.tq : "-" }}</td>
|
|
</tr>
|
|
</div>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
import moment from "moment"
|
|
export default {
|
|
props:{
|
|
tableData:{
|
|
type:Array,
|
|
default:[],
|
|
}
|
|
},
|
|
computed:{
|
|
newList(){
|
|
if(this.tableData.length){
|
|
return this.tableData.map(item => ({...item,tm:moment(item.tm).format("MM-DD HH:mm")}))
|
|
}
|
|
}
|
|
},
|
|
methods:{
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.table_div {
|
|
height: 100%;
|
|
max-width: calc(100% - 0px);
|
|
max-height: calc(100vh);
|
|
flex: 1;
|
|
padding-top: 0px;
|
|
overflow-x: scroll;
|
|
}
|
|
/*table样式*/
|
|
.table_cur {
|
|
width: 100%;
|
|
empty-cells: show;
|
|
border-collapse: collapse;
|
|
font-size: 14px;
|
|
}
|
|
.table_cur tr {
|
|
display: flex;
|
|
line-height: 75rpx;
|
|
}
|
|
.table_cur th {
|
|
height: 85rpx;
|
|
color: #3399ef;
|
|
background: #e1f3ff;
|
|
font-size: 14px;
|
|
// font-weight: bold;
|
|
padding: 0px 10px;
|
|
box-sizing: border-box;
|
|
white-space: nowrap;
|
|
text-align: center !important;
|
|
}
|
|
|
|
.table_cur td {
|
|
height: 65rpx;
|
|
// border-bottom: 1px solid #d8ddeb;
|
|
font-size: 14px;
|
|
color: #2f4056;
|
|
padding: 0 10px;
|
|
box-sizing: border-box;
|
|
white-space: nowrap;
|
|
text-align: center !important;
|
|
}
|
|
/*table样式 end*/
|
|
</style> |