修复重置按钮多选没有清空的问题

pull/508/head
ken678 2025-08-14 17:43:29 +08:00
parent cfd7068a99
commit 87710c0a18
1 changed files with 7 additions and 3 deletions

View File

@ -134,9 +134,13 @@ define(['jquery', 'bootstrap', 'upload', 'validator', 'validator-lang'], functio
$(form).on("reset", function () {
setTimeout(function () {
$(".selectpage", form).each(function () {
var selectpage = $(this).data("selectPageObject");
selectpage.elem.hidden.val($(this).val());
$(this).selectPageRefresh();
if($(this).val()){
var selectpage = $(this).data("selectPageObject");
selectpage.elem.hidden.val($(this).val());
$(this).selectPageRefresh();
}else{
$(this).selectPageClear();
}
});
}, 1);
});