|
@@ -123,11 +123,22 @@ export default {
|
|
|
// 获取所有逆变器名称(列表转义应用)
|
|
|
this.$axios.get('/inverterinfo/findAll').then((res) => {
|
|
|
this.nameList = res.data
|
|
|
+ if (res.data.length > 0) {
|
|
|
+ // 默认选中前5个风机
|
|
|
+ let count = 0
|
|
|
+ for (let i = 0; i < res.data.length; i++) {
|
|
|
+ if (count <= 4) {
|
|
|
+ this.equipmentId.push(res.data[i].value)
|
|
|
+ count++
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 获取场站下拉列表
|
|
|
+ this.getStationCode()
|
|
|
}).catch((error) => {
|
|
|
this.$message.error('获取逆变器转义名称出错' + error)
|
|
|
})
|
|
|
- // 获取场站下拉列表
|
|
|
- this.getStationCode()
|
|
|
+
|
|
|
},
|
|
|
mounted() {
|
|
|
|