导引回访按钮增加是否显示配置

This commit is contained in:
Mr-wang 2023-07-29 15:43:55 +08:00
parent a5be307594
commit e42c9970c4

View File

@ -478,7 +478,7 @@
$('#bar_importPolicyFile').css('display','none')
}
isGetHidden();
if (!installBatch) {// 未安装批处理应用,删除功能入口
$('li[ac=batchreplace]').remove();
}
@ -532,6 +532,24 @@
});
}
function isGetHidden(){
debugger;
$.ajax({
url: "./jd?sid=" + sid + "&cmd=com.actionsoft.apps.bpa.IsHidden_Modeling_Guidance",
type: 'GET',
success: function(data) {
if(data==true){
//初始化建模导引
//initGuide();
$('#modelingGuide').css('display','')
}else{
$('#modelingGuide').css('display','none')
}
}
});
}
//建模导引
function initGuide(){
$.ajax({