From 0fcf0f9036c6ea78855486ea528924498f166c83 Mon Sep 17 00:00:00 2001
From: kimi <kimi42345@gmail.com>
Date: 星期二, 11 二月 2020 14:18:45 +0800
Subject: [PATCH] 0211

---
 src/components/popup/portion/substep.vue |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/components/popup/portion/substep.vue b/src/components/popup/portion/substep.vue
index 2d90b4a..847d34a 100644
--- a/src/components/popup/portion/substep.vue
+++ b/src/components/popup/portion/substep.vue
@@ -1199,6 +1199,7 @@
     data() {
       return {
 				showData: {},
+				finish: false,
 				hideData: {
 					'title': false,
 					'scheme': false,
@@ -1450,7 +1451,6 @@
 			  let url = "/api/sysRoleMapping/detail";
 			  this.$axios.get(url)
 			  .then(data_ => {
-			    console.log(data_);
 			    let list = data_.data.data;
 			    let parId = "";
 			    let obj = {};
@@ -1478,17 +1478,16 @@
 			            obj[id].children = [list[i]];
 			        }
 			    }
+				
 			    me.options_users = result;
 			
 			  }).catch(error =>{
-			      console.log(error);
 			  })
 			},
 			
 			getDetailed() {
 				let url = "/api/detail/parent/" + this.xmId;
 				this.$axios.get(url).then(data_ => {
-				  console.log(data_);
 					this.defaultCheckedKeys = [];
 					this.showData = {};
 					let details_ = data_.data.data;
@@ -1509,8 +1508,8 @@
 						}
 						
 					}
+					this.finish = true;
 				}).catch(error =>{
-				    console.log(error);
 				})
 				
 			},

--
Gitblit v1.8.0