From 2e7238bb85591abd5dee04d3465f1db6346e7deb Mon Sep 17 00:00:00 2001 From: wangxy <1356089412@qq.com> Date: Mon, 29 Jul 2024 10:01:24 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E7=94=9F=E6=88=90=E8=B4=A6=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/templates/system/user/edit.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ruoyi-admin/src/main/resources/templates/system/user/edit.html b/ruoyi-admin/src/main/resources/templates/system/user/edit.html index 77bf299..916d2b6 100644 --- a/ruoyi-admin/src/main/resources/templates/system/user/edit.html +++ b/ruoyi-admin/src/main/resources/templates/system/user/edit.html @@ -307,10 +307,10 @@ function submitHandler() { if ($.validate.form()) { var data = $("#form-user-edit").serializeArray(); - var status = $("input[id='status']").is(':checked') == true ? 0 : 1; + /*var status = $("input[id='status']").is(':checked') == true ? 0 : 1;*/ var roleIds = $.form.selectCheckeds("role"); var postIds = $.form.selectSelects("post"); - data.push({"name": "status", "value": status}); + /*data.push({"name": "status", "value": status});*/ data.push({"name": "roleIds", "value": roleIds}); data.push({"name": "postIds", "value": postIds}); $.operate.saveTab(prefix + "/edit", data);