diff --git a/ruoyi-admin/src/main/resources/templates/system/user/userApply/applyDetail.html b/ruoyi-admin/src/main/resources/templates/system/user/userApply/applyDetail.html
index f0ebe26..4a32fcf 100644
--- a/ruoyi-admin/src/main/resources/templates/system/user/userApply/applyDetail.html
+++ b/ruoyi-admin/src/main/resources/templates/system/user/userApply/applyDetail.html
@@ -118,7 +118,7 @@
@@ -277,7 +277,31 @@
}
});
}
+ document.addEventListener('DOMContentLoaded', function () {
+ // 获取所有name为role的radio按钮
+ var radios = document.querySelectorAll('input[type="radio"]');
+ // 遍历所有radio按钮,找到初始选中的按钮并将其设置为可操作状态
+ radios.forEach(function (radio) {
+ if (radio.checked) {
+ radio.disabled = false;
+ }
+
+ // 为每个radio按钮添加点击事件监听器
+ radio.addEventListener('click', function () {
+ // 遍历所有radio按钮
+ radios.forEach(function (otherRadio) {
+ // 如果不是当前点击的按钮且未被选中,则设置为禁用状态
+ if (otherRadio!== this &&!otherRadio.checked) {
+ otherRadio.disabled = true;
+ } else {
+ // 确保当前选中的按钮及未选中但之前被操作过的按钮为可用状态
+ otherRadio.disabled = false;
+ }
+ });
+ });
+ });
+ });
$("input[name='birthday']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
diff --git a/ruoyi-admin/src/main/resources/templates/system/user/userexamine/examinedetail.html b/ruoyi-admin/src/main/resources/templates/system/user/userexamine/examinedetail.html
index cc3715f..29f191d 100644
--- a/ruoyi-admin/src/main/resources/templates/system/user/userexamine/examinedetail.html
+++ b/ruoyi-admin/src/main/resources/templates/system/user/userexamine/examinedetail.html
@@ -118,7 +118,7 @@
@@ -374,7 +374,31 @@
};
$.modal.openOptions(options);
}
+ document.addEventListener('DOMContentLoaded', function () {
+ // 获取所有name为role的radio按钮
+ var radios = document.querySelectorAll('input[type="radio"]');
+ // 遍历所有radio按钮,找到初始选中的按钮并将其设置为可操作状态
+ radios.forEach(function (radio) {
+ if (radio.checked) {
+ radio.disabled = false;
+ }
+
+ // 为每个radio按钮添加点击事件监听器
+ radio.addEventListener('click', function () {
+ // 遍历所有radio按钮
+ radios.forEach(function (otherRadio) {
+ // 如果不是当前点击的按钮且未被选中,则设置为禁用状态
+ if (otherRadio!== this &&!otherRadio.checked) {
+ otherRadio.disabled = true;
+ } else {
+ // 确保当前选中的按钮及未选中但之前被操作过的按钮为可用状态
+ otherRadio.disabled = false;
+ }
+ });
+ });
+ });
+ });
function doSubmit(index, layero){
var body = $.modal.getChildFrame(index);
$("#treeId").val(body.find('#treeId').val());