From c2f95b0b9090a2394b5b068582b932a5e57b86aa Mon Sep 17 00:00:00 2001
From: zmc <zmc_li@foxmail.com>
Date: 星期二, 05 九月 2023 18:19:37 +0800
Subject: [PATCH] 雷达图 新增综合风险排名 数据接入配置

---
 src/sfc/ExceptionType.vue |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/src/sfc/ExceptionType.vue b/src/sfc/ExceptionType.vue
index c11f5d4..4a1170b 100644
--- a/src/sfc/ExceptionType.vue
+++ b/src/sfc/ExceptionType.vue
@@ -32,8 +32,14 @@
                 // this.exceptionType = response.data.data
                 response.data.data.forEach(item => {
                     this.exceptionType.push(item.exceptionType)
+
                 });
-                console.log(this.exceptionType);
+                let a = ['0','1','2','3','4','5','6','7']
+                a.forEach(item=>{
+                  if(this.exceptionType.indexOf(item) == -1){
+                    this.exceptionType.push(item)
+                  }
+                })
             })
         },
         handleCheckAllChange (val) {

--
Gitblit v1.9.3