From 90c86c95de1d20a3c3a44cab3482388a8c221a5e Mon Sep 17 00:00:00 2001
From: ludc
Date: 星期四, 05 十二月 2024 10:32:59 +0800
Subject: [PATCH] UI数据查询调整

---
 Source/plt-web/plt-web-ui/src/views/system/role/index.vue |    5 -----
 1 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/Source/plt-web/plt-web-ui/src/views/system/role/index.vue b/Source/plt-web/plt-web-ui/src/views/system/role/index.vue
index 6f9e5f6..64d260f 100644
--- a/Source/plt-web/plt-web-ui/src/views/system/role/index.vue
+++ b/Source/plt-web/plt-web-ui/src/views/system/role/index.vue
@@ -190,7 +190,6 @@
     rowSaveHandler(row, done, loading) {
       delete row.roleClassifyText;
       addRole(row).then(res => {
-        console.log(res)
         if (res.data.code === 200) {
           this.$message.success(res.data.obj);
           this.getTableList();
@@ -213,7 +212,6 @@
         }
       }).catch(err => {
         loading();
-        console.log(err);
       });
     },
 
@@ -325,7 +323,6 @@
         return;
       }
       listUserByRoleOid({pkRole: this.selectList[0].oid}).then(res => {
-        console.log(res)
         if (res.data.code === 200) {
           const data = res.data.data;
           this.countData = data.map(item => {
@@ -338,8 +335,6 @@
           });
           this.statisticsVisible = true;
         }
-      }).catch(err => {
-        console.log(err)
       })
     },
 

--
Gitblit v1.9.3