Browse Source

修改权限配置新增删除权限传值为空的问题

zhaoke 11 months ago
parent
commit
c01a751270
1 changed files with 8 additions and 24 deletions
  1. 8 24
      src/views/permissionPage/components/permissionList.vue

+ 8 - 24
src/views/permissionPage/components/permissionList.vue

@@ -314,6 +314,7 @@ export default {
         const [nitems1, nitems2] = [ndatas.at(-1), ndatas.at(-2)]
         if (nitems1.length > nitems2.length) {
           const res = this.findRepetData(nitems1, nitems2)
+          console.log(res)
           this.sendCheckData('add', res)
         } else {
           const res = this.findRepetData(nitems1, nitems2)
@@ -358,30 +359,13 @@ export default {
         querys.push(modifyData(params))
       } else {
         const ids = []
-        items.map(({ pagetype, children, serviceid, pageconfigurationid }) => {
-          if (pagetype == 'module' || pagetype == 'page' || pagetype == 'button') {
-            ids.push({
-              pageconfigurationid,
-              serviceid
-            })
-          } else {
-            if (pagetype == 'table' && children) {
-              const childs = children
-              if (childs.length) {
-                childs.map(citem => {
-                  ids.push({
-                    pageconfigurationid: citem.pageconfigurationid,
-                    serviceid: serviceid
-                  })
-                })
-              }
-              ids.push({
-                pageconfigurationid,
-                serviceid
-              })
-            }
-          }
-          //if (item.children) delete item.children
+        items.map(item => {
+          const { serviceid, pageconfigurationid } = item
+          if (item.children) delete item.children
+          ids.push({
+            pageconfigurationid,
+            serviceid
+          })
         })
         const params = {
           id,