样式修改

This commit is contained in:
978184212@qq.com 2025-12-02 10:57:35 +08:00
parent 36b53cdb37
commit ed1fbcb9a0
1 changed files with 22 additions and 2 deletions

View File

@ -241,15 +241,36 @@
this.index = 0
this.index1 = 0
this.getpj()
this.importWyw()
this.getazsurvMulchRecord()
this.getyjList()
// this.gettj()
this.qushicov()
},
methods: {
importWyw() {
this.array = []
this.arrays = []
this.arrays1 = [{
label: '全部监测设备',
value: ''
}]
this.$http.get('/applet/survStationInfo/list').then(res => {
for (var i = 0; i < res.data.data.length; i++) {
this.arrays.push({
label: res.data.data[i].stationName,
value: res.data.data[i].stationCode
})
this.arrays1.push({
label: res.data.data[i].stationName,
value: res.data.data[i].stationCode
})
this.array.push(res.data.data[i].stationName)
}
})
},
//
getazsurvMulchRecord() {
this.array = []
this.arrays = []
this.array1 = ['全部监测设备', ]
this.arrays1 = [{
@ -266,7 +287,6 @@
label: res.data.data[i].fullDeviceName,
value: res.data.data[i].id
})
this.array.push(res.data.data[i].fullDeviceName)
this.array1.push(res.data.data[i].fullDeviceName)
}
})