From 77be404d9d2b3fa11c7ba0890dcdf2bb0b5d6a1c Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期四, 31 十月 2024 17:14:01 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 admin/src/components/operation/HiddenDangerParam.vue |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/admin/src/components/operation/HiddenDangerParam.vue b/admin/src/components/operation/HiddenDangerParam.vue
index 30386b0..babe186 100644
--- a/admin/src/components/operation/HiddenDangerParam.vue
+++ b/admin/src/components/operation/HiddenDangerParam.vue
@@ -4,6 +4,7 @@
     width="600px"
     :visible.sync="isShowModal"
     :confirm-working="isWorking"
+    @close="close"
     @confirm="confirm"
   >
     <el-form :model="param" ref="paramRef" :rules="rules">
@@ -161,7 +162,7 @@
       this.getfindCompanyTreePage()
     },
     getfindCompanyTreePage() {
-      companyGetListPost({})
+      companyGetListPost({queryHiddenDanger: 1})
         .then(res => {
           if (res && res.length > 0) {
             this.department = res
@@ -170,6 +171,8 @@
     },
     getAddrList() {
       const { companyId } = this.param
+      this.$set(this.param, 'areaId', '')
+      this.$set(this.param, 'checkUserId', '')
       allList({ type: 0,companyId }).then(res => { // 浣嶇疆
         this.addrList = res || []
       })
@@ -239,6 +242,10 @@
     handleDelImg (i) {
       this.fileList.splice(i, 1)
     },
+    close(){
+      this.isShowModal = false
+      this.$emit('close')
+    },
     // 鍚屾淇℃伅
     confirm () {
       this.$refs.paramRef.validate((valid) => {

--
Gitblit v1.9.3