From e2c18bf8dfb25bb90c6b95d7463a2a05b32908f0 Mon Sep 17 00:00:00 2001 From: Esacpe <1113279529@qq.com> Date: Wed, 16 Jul 2025 13:49:12 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B7=9F=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../backOfficeSystem/ExcavationResearch/ZdryFjyp/index.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/views/backOfficeSystem/ExcavationResearch/ZdryFjyp/index.vue b/src/views/backOfficeSystem/ExcavationResearch/ZdryFjyp/index.vue index d609692..e0455db 100644 --- a/src/views/backOfficeSystem/ExcavationResearch/ZdryFjyp/index.vue +++ b/src/views/backOfficeSystem/ExcavationResearch/ZdryFjyp/index.vue @@ -196,7 +196,7 @@ const tabHeightFn = () => { const chooseDataBottom = (val) =>{ if(Array.isArray(val)) { ids.value = val.map(item=>item.id); - chooseList.value = val; + chooseList.value = val.filter(v=>{ if(v.sfZzdry == 0) return v; }); }else{ if(!val.rySfzh) { ElMessage.warning("该人员没有轨迹"); @@ -228,6 +228,9 @@ const chooseType = (val)=>{ }).catch(() => {}); break; case '是否重点人': + if(chooseList.value.length == 0) return ElMessage.warning("选择的数据中都是重点人"); + isShow.value = true; + break; case '是否关注': case '移交管控': isShow.value = true;