|
|
|
@ -69,6 +69,21 @@
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
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({
|
|
|
|
|
pageSize:20
|
|
|
|
|
}).then(res => {
|
|
|
|
@ -77,6 +92,11 @@
|
|
|
|
|
}).map(v => {
|
|
|
|
|
v.children = STATION_LIST[v.id]
|
|
|
|
|
return v
|
|
|
|
|
}).filter(v => {
|
|
|
|
|
if (filterStationItem) {
|
|
|
|
|
return v.stationName.includes(filterStationItem.stationName)
|
|
|
|
|
}
|
|
|
|
|
return v
|
|
|
|
|
})
|
|
|
|
|
this.station = this.stationData[this.index]
|
|
|
|
|
uni.setStorageSync('_pro_stations', this.stationData)
|
|
|
|
|