Compare commits

...

2 Commits

@ -58,11 +58,11 @@ export const STATION_LIST = {
}, },
{ {
id: '33', id: '33',
stationName: '方阵1' stationName: '方阵2'
}, },
{ {
id: '34', id: '34',
stationName: '方阵1' stationName: '方阵3'
}, },
], ],
'1052758022': [ '1052758022': [

@ -6,7 +6,7 @@
<view class="card-box"> <view class="card-box">
<uni-section title="电站列表" type="line" padding="0 0 5px 0"> <uni-section title="电站列表" type="line" padding="0 0 5px 0">
<view class="station-box-list"> <view class="station-box-list">
<uni-card title="" <uni-card title=""
class="arrow animation-slide-right" class="arrow animation-slide-right"
:style="[{animationDelay: '0.'+ index +'s'}]" :style="[{animationDelay: '0.'+ index +'s'}]"
v-for="(item, index) in stationData" :key="item.id"> v-for="(item, index) in stationData" :key="item.id">
@ -29,7 +29,7 @@
<text class="left">当日功率(kW)</text> <text class="left">当日功率(kW)</text>
<text >{{ item.dayPower }}</text> <text >{{ item.dayPower }}</text>
</view> </view>
<view class="flex station-info-item"> <view class="flex station-info-item">
<text class="left">累计发电(kWh)</text> <text class="left">累计发电(kWh)</text>
<text>{{ item.totalElectricity }}</text> <text>{{ item.totalElectricity }}</text>
@ -41,7 +41,7 @@
</view> </view>
</uni-card> </uni-card>
</view> </view>
</uni-section> </uni-section>
</view> </view>
</view> </view>
@ -50,7 +50,7 @@
</template> </template>
<script> <script>
import { getStationList } from '@/api/modules/station.js' import { getStationList } from '@/api/modules/station.js'
import _mixin from './mixin.js' import _mixin from './mixin.js'
import { STATION_LIST } from './config' import { STATION_LIST } from './config'
@ -60,7 +60,7 @@
modalName: null, modalName: null,
index: 0, index: 0,
station: {} station: {}
} }
}, },
mixins: [_mixin], mixins: [_mixin],
@ -69,6 +69,21 @@
}, },
methods: { methods: {
getStationList() { getStationList() {
const userInfo = uni.getStorageSync('login_user_info')
const username = userInfo.username
const filterStation = [
{
username: 'hailun',
stationId: ['1052758024'],
stationName: '海伦'
},
{
username: 'hanzhong',
stationId: ['1052758028', '1052758029'],
stationName: '汉钟'
},
]
const filterStationItem = filterStation.some(v => v.username === username) && filterStation.filter(v => v.username === username)[0]
getStationList({ getStationList({
pageSize:20 pageSize:20
}).then(res => { }).then(res => {
@ -77,7 +92,12 @@
}).map(v => { }).map(v => {
v.children = STATION_LIST[v.id] v.children = STATION_LIST[v.id]
return v return v
}) }).filter(v => {
if (filterStationItem) {
return v.stationName.includes(filterStationItem.stationName)
}
return v
})
this.station = this.stationData[this.index] this.station = this.stationData[this.index]
uni.setStorageSync('_pro_stations', this.stationData) uni.setStorageSync('_pro_stations', this.stationData)
}) })
@ -129,7 +149,7 @@
flex-wrap: wrap; flex-wrap: wrap;
color: #888; color: #888;
.station-info-item { .station-info-item {
font-size: 12px; font-size: 12px;
width: 50%; width: 50%;
vertical-align: middle; vertical-align: middle;
@ -143,7 +163,7 @@
&:nth-child(3), &:nth-child(4) { &:nth-child(3), &:nth-child(4) {
width: 100%; width: 100%;
border-top: 1px dashed #cedefb; border-top: 1px dashed #cedefb;
} }
.left { .left {
// width: 130px; // width: 130px;
text-align: justify; text-align: justify;
@ -152,7 +172,7 @@
color: #4aaf0b; color: #4aaf0b;
// letter-spacing: 2upx; // letter-spacing: 2upx;
} }
} }
} }
</style> </style>

Loading…
Cancel
Save