Browse Source

升压站缩略图界面报警调整

xushining 2 years ago
parent
commit
a3bea2d6aa
3 changed files with 19 additions and 19 deletions
  1. 5 5
      .env.development
  2. 5 5
      .env.production
  3. 9 9
      src/components/focus/syzDetails.vue

+ 5 - 5
.env.development

@@ -1,5 +1,5 @@
-VUE_APP_API=http://18.6.30.71:8099
-VUE_APP_SHARDINGURL=http://18.6.30.71:8075
-VUE_APP_ADAPTERURL=http://18.6.30.71:8011
-VUE_APP_APIS=18.6.30.71:8099
-VUE_APP_ADAPTERURLS=18.6.30.71:8011
+VUE_APP_API=http://18.6.30.63:8099
+VUE_APP_SHARDINGURL=http://18.6.30.63:8075
+VUE_APP_ADAPTERURL=http://18.6.30.63:8011
+VUE_APP_APIS=18.6.30.63:8099
+VUE_APP_ADAPTERURLS=18.6.30.63:8011

+ 5 - 5
.env.production

@@ -1,5 +1,5 @@
-VUE_APP_API=http://18.6.30.71:8099
-VUE_APP_SHARDINGURL=http://18.6.30.71:8075
-VUE_APP_ADAPTERURL=http://18.6.30.71:8011
-VUE_APP_APIS=18.6.30.71:8099
-VUE_APP_ADAPTERURLS=18.6.30.71:8011
+VUE_APP_API=http://18.6.30.63:8099
+VUE_APP_SHARDINGURL=http://18.6.30.63:8075
+VUE_APP_ADAPTERURL=http://18.6.30.63:8011
+VUE_APP_APIS=18.6.30.63:8099
+VUE_APP_ADAPTERURLS=18.6.30.63:8011

+ 9 - 9
src/components/focus/syzDetails.vue

@@ -178,15 +178,15 @@ export default {
                     let datas = res.data
                     let arr = []
                     datas.forEach(it =>{
-                        if (it.rank === '5') {
-                            if (it.stationName.indexOf('风电场') !== -1 ) {
-                                str = it.stationName.substring(0, it.stationName.indexOf('风电场'))
-                            } else if (it.stationName.indexOf('光伏电站') !== -1) {
-                                str = it.stationName.substring(0, it.stationName.indexOf('光伏电站'))
-                            }
-                            arr.push(str)
+                        if (it.rank === '5' && it.category1 === 'SYZ') {
+                            // if (it.stationName.indexOf('风电场') !== -1 ) {
+                            //     str = it.stationName.substring(0, it.stationName.indexOf('风电场'))
+                            // } else if (it.stationName.indexOf('光伏电站') !== -1) {
+                            //     str = it.stationName.substring(0, it.stationName.indexOf('光伏电站'))
+                            // }
+                            arr.push(it.category2)
                         }
-                        let str = ''
+                        // let str = ''
                     })
                     this.allWarnData = this.unique(arr)
                 }
@@ -204,7 +204,7 @@ export default {
         getWarnstyle(item) {
             let showWarn = ''
             this.allWarnData.forEach(it=> {
-                if (it === item.name) {
+                if (it === item.id) {
                     showWarn = 'warningMaskNew'
                 }
             })