From 85fb13abbeadc1765d2c0056ba99c6c19aa35dfd Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Sun, 09 Apr 2023 03:44:49 +0800
Subject: [PATCH] 电子沙盘的调整

---
 src/views/activity/index.vue |   16 +++++++++++++++-
 1 files changed, 15 insertions(+), 1 deletions(-)

diff --git a/src/views/activity/index.vue b/src/views/activity/index.vue
index e8f22a3..4cca851 100644
--- a/src/views/activity/index.vue
+++ b/src/views/activity/index.vue
@@ -2,7 +2,7 @@
  * @Author: shuishen 1109946754@qq.com
  * @Date: 2023-03-24 16:36:55
  * @LastEditors: shuishen 1109946754@qq.com
- * @LastEditTime: 2023-04-07 09:51:28
+ * @LastEditTime: 2023-04-07 16:45:36
  * @FilePath: \srs-police-affairs\src\views\activity\index.vue
  * @Description: 
  * 
@@ -81,6 +81,17 @@
                                                     :key="dangerousItem.id"
                                                     @click="carOrPoliceItemClick(dangerousItem.position, 'people')">
                                                     危险人物{{ index + 1 }}
+                                                </li>
+                                            </ul>
+                                        </el-collapse-item>
+                                    </el-collapse>
+
+                                    <el-collapse v-model="elementCustomIndex" accordion>
+                                        <el-collapse-item title="自定义图片标注" :name="wxrw">
+                                            <ul>
+                                                <li v-for="(item, index) in customList" :key="item.id"
+                                                    @click="carOrPoliceItemClick(item.position, 'people')">
+                                                    自定义图片标注{{ index + 1 }}
                                                 </li>
                                             </ul>
                                         </el-collapse-item>
@@ -222,6 +233,7 @@
             elementNormalIndex: '',
             elementProtectedIndex: '',
             elementDangerousIndex: '',
+            elementCustomIndex: '',
             attackArrowIndex: '',
             doubleArrowIndex: '',
             tailedAttackArrowIndex: '',
@@ -244,6 +256,7 @@
             normalPeopleList: [],
             protectedPeopleList: [],
             dangerousPeopleList: [],
+            customList: [],
             boxShow: true,
             searchActivity: '',
             currentPage: 1,
@@ -440,6 +453,7 @@
                 this.normalPeopleList = res.data.data.filter(item => item.type == 6)
                 this.protectedPeopleList = res.data.data.filter(item => item.type == 7)
                 this.dangerousPeopleList = res.data.data.filter(item => item.type == 8)
+                this.customList = res.data.data.filter(item => item.type == 11)
 
                 // 作战标绘
                 this.attackArrowList = res.data.data.filter(item => item.type == 1)

--
Gitblit v1.9.3