From 1a3801b7316b0a23b6d3924eb4fbb023b1edef83 Mon Sep 17 00:00:00 2001 From: 44323 <443237572@qq.com> Date: 星期二, 07 十一月 2023 10:30:14 +0800 Subject: [PATCH] 后台bug修改 --- cloud-server-management/src/main/webapp/static/modular/system/tSite/tSite.js | 29 ++++++++++++++++------------- 1 files changed, 16 insertions(+), 13 deletions(-) diff --git a/cloud-server-management/src/main/webapp/static/modular/system/tSite/tSite.js b/cloud-server-management/src/main/webapp/static/modular/system/tSite/tSite.js index e4172b0..5251cd8 100644 --- a/cloud-server-management/src/main/webapp/static/modular/system/tSite/tSite.js +++ b/cloud-server-management/src/main/webapp/static/modular/system/tSite/tSite.js @@ -171,26 +171,29 @@ }; TSite.oneChangeYys = function(e){ - var oneId= $("input[name='pt']:checked").val() + var oneId; - console.log("===========oneId=========="+oneId) - var SelectValue=""; - var getSelectValueMenbers = $("input[name='pt']:checked").each(function(j) { - if (j >= 0) { - SelectValue += $(this).val() - } - }); - if(SelectValue=='0' ){ - oneId=0 + var checkbox = document.querySelector('input[name="pt"]'); + if (checkbox.checked) { + oneId=0; + console.log("选中是平台"); + } else { + oneId = $("#yys").val(); + console.log("运营商"); } var ajax = new $ax(Feng.ctxPath + "/tSite/getChangeOne", function(data){ if(data!=null){ // var content1 = '<option value="0">平台</option>'; - if (typeof(oneId) != "undefined") { + if (oneId == 0) { + console.log("锁住") $("#yys").prop('disabled', true); + }else{ + console.log("放开") + $("#yys").prop('disabled', false); } - + console.log("看看返回数据") + console.log(data) var content='<option value="">选择门店</option>'; $.each(data, function(k,v) { content += "<option value='"+v.id+"'>"+v.name+"</option>"; @@ -201,7 +204,7 @@ if (typeof(oneId) == "undefined"){ console.log("===============") - + oneId = $("#yys").val() var button = document.getElementById("yys"); button.removeAttribute("disabled"); -- Gitblit v1.7.1