人生啊人生 hace 3 meses
padre
commit
b2f84eae43
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      user_web/src/view/admin/ManageUser.vue

+ 2 - 1
user_web/src/view/admin/ManageUser.vue

@@ -251,7 +251,7 @@ const handleCurrentChange = (val) => {
 }
 
 /**
- * 
+ * 分页多选,更新多选的相关数据
  * @param res 
  */
 const selectionChange = (res) => {
@@ -259,6 +259,7 @@ const selectionChange = (res) => {
     res.forEach((item) => {
         state.value.ids.push(item.id);
     });
+    console.log("分页多选,更新多选的相关数据", state.value.ids);
 }
 
 </script>