|
|
|
@ -3,22 +3,21 @@
|
|
|
|
|
<uni-nav-bar left-icon="left" fixed="true" title="" @clickLeft="handleClickLeft"></uni-nav-bar>
|
|
|
|
|
<scroll-view :scroll-y="modalName==null" class="page" :class="modalName!=null?'show':''">
|
|
|
|
|
<view class="station-box">
|
|
|
|
|
<view>
|
|
|
|
|
<!-- <view>
|
|
|
|
|
选择电站:<picker mode="selector" :range="stationData"
|
|
|
|
|
range-key="stationName"
|
|
|
|
|
:value="index" @change="handlerChangeStation">
|
|
|
|
|
<view style="color: royalblue;">{{ stationData[index].stationName }}</view>
|
|
|
|
|
</picker>
|
|
|
|
|
</view>
|
|
|
|
|
</view> -->
|
|
|
|
|
<view class="card-box">
|
|
|
|
|
<uni-section title="电站信息" type="line" padding="0 0 5px 0">
|
|
|
|
|
<uni-card title="" padding="10px" >
|
|
|
|
|
<uni-section title="电站列表" type="line" padding="0 0 5px 0">
|
|
|
|
|
<!-- <uni-card title="">
|
|
|
|
|
<template v-slot:title>
|
|
|
|
|
<uni-list>
|
|
|
|
|
<uni-list-item showArrow clickable :title="station.stationName" @click="goNext" />
|
|
|
|
|
</uni-list>
|
|
|
|
|
</template>
|
|
|
|
|
<!-- <image style="width: 100%;" :src="cover"></image> -->
|
|
|
|
|
<view class="station-info">
|
|
|
|
|
<view class="flex station-info-item">
|
|
|
|
|
<text class="left">装机容量(MW):</text>
|
|
|
|
@ -41,7 +40,41 @@
|
|
|
|
|
<text>{{ station.irradiationLevel }}</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</uni-card>
|
|
|
|
|
</uni-card> -->
|
|
|
|
|
<view class="station-box-list">
|
|
|
|
|
<uni-card title="" v-for="item in stationData" :key="item.id">
|
|
|
|
|
<template v-slot:title>
|
|
|
|
|
<uni-list>
|
|
|
|
|
<uni-list-item showArrow clickable :title="item.stationName" @click="goNext(item.id)" />
|
|
|
|
|
</uni-list>
|
|
|
|
|
</template>
|
|
|
|
|
<!-- <image style="width: 100%;" :src="cover"></image> -->
|
|
|
|
|
<view class="station-info">
|
|
|
|
|
<view class="flex station-info-item">
|
|
|
|
|
<text class="left">装机容量(MW):</text>
|
|
|
|
|
<text class="right">{{ item.capacity }}</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="flex station-info-item">
|
|
|
|
|
<text class="left">当日发电(kWh):</text>
|
|
|
|
|
<text class="right">{{ item.dayElectricity }}</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="flex station-info-item">
|
|
|
|
|
<text class="left">当日功率(kW):</text>
|
|
|
|
|
<text >{{ item.dayPower }}</text>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class="flex station-info-item">
|
|
|
|
|
<text class="left">累计发电(kWh):</text>
|
|
|
|
|
<text>{{ item.totalElectricity }}</text>
|
|
|
|
|
</view>
|
|
|
|
|
<!-- <view class="flex station-info-item">
|
|
|
|
|
<text class="left">光照强度(W/m^2):</text>
|
|
|
|
|
<text>{{ station.irradiationLevel }}</text>
|
|
|
|
|
</view> -->
|
|
|
|
|
</view>
|
|
|
|
|
</uni-card>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
</uni-section>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
@ -203,11 +236,11 @@
|
|
|
|
|
this.index = e.detail.value
|
|
|
|
|
this.station = this.stationData[this.index]
|
|
|
|
|
},
|
|
|
|
|
goNext() {
|
|
|
|
|
goNext(id) {
|
|
|
|
|
this.$router.push({
|
|
|
|
|
name: 'stationListItem1',
|
|
|
|
|
query: {
|
|
|
|
|
id: this.station.id
|
|
|
|
|
id
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
@ -218,26 +251,50 @@
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
.station-box {
|
|
|
|
|
position: relative;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
padding: 10px 0;
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
.station-box-list {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-height: 85vh;
|
|
|
|
|
overflow-y: scroll;
|
|
|
|
|
}
|
|
|
|
|
.card-box {
|
|
|
|
|
margin-top: 50px;
|
|
|
|
|
// margin-top: 50px;
|
|
|
|
|
// max-height: 90vh;
|
|
|
|
|
// overflow-y: scroll;
|
|
|
|
|
}
|
|
|
|
|
.station-info {
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
// margin-top: 20px;
|
|
|
|
|
display: flex;
|
|
|
|
|
// flex-direction:column;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
color: #888;
|
|
|
|
|
.station-info-item {
|
|
|
|
|
color: #666;
|
|
|
|
|
&:not(:first-child) {
|
|
|
|
|
// margin-top: 10px;
|
|
|
|
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
width: 50%;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
line-height: 2.5;
|
|
|
|
|
// &:not(:first-child) {
|
|
|
|
|
// // margin-top: 10px;
|
|
|
|
|
// border-top: 1px dashed #cedefb;
|
|
|
|
|
// vertical-align: middle;
|
|
|
|
|
// line-height: 2.5;
|
|
|
|
|
// }
|
|
|
|
|
&:nth-child(3), &:nth-child(4) {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-top: 1px dashed #cedefb;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
line-height: 2.5;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.left {
|
|
|
|
|
width: 130px;
|
|
|
|
|
// width: 130px;
|
|
|
|
|
text-align: justify;
|
|
|
|
|
}
|
|
|
|
|
.right {
|
|
|
|
|
color: #4aaf0b;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|