本帖最后由 _YH_lashi 于 2022-5-25 10:49 编辑
范围参数2 是直接 复制的 机构权限等级范围
装载时 :
//写死机构号验证
param["orgId"]="14304"
//用户控制
if(param["orgId"]=="14304"){
param["orgidNew"] ="B4410"
} else{
param["orgidNew"]=param["orgId"]
}
//debug(param["test"])
//跳转传机构号
if(trim(param["test"])=="null"){
//debug(param["test"])
param["orgidNew"]=param["orgidNew"]
} else{
param["orgidNew"]=param["test"]
}
/*
if(trim(param["机构权限等级范围"])=='null'){
机构明细图表.visible=false;
图表时间.visible=false;
图表单位.visible=false;
} else{
机构明细图表.visible=true;
图表时间.visible=true;
图表单位.visible=true;
}
*/
机构明细图表.visible=true;
图表时间.visible=true;
图表单位.visible=true;
变化时:
//写死机构号验证
param["orgId"]="14304"
//用户控制
if(param["orgId"]=="14304"){
param["orgidNew"] ="B4410"
} else{
param["orgidNew"]=param["orgId"]
}
//debug(param["test"])
//跳转传机构号
if(trim(param["test"])=="null"){
//debug(param["test"])
param["orgidNew"]=param["orgidNew"]
} else{
param["orgidNew"]=param["test"]
}
//组件显示
//debug(param["orgidNew"])
//debug(param["机构权限等级范围"])
//debug(机构权限等级范围.getSelectedObjects()[1])
var vdata= getData("机构明细图表",DATA);
var empty = vdata.get(0,0)== null;
if(empty){
机构明细图表.mobileVisible=true;
图表单位.mobileVisible=true;
图表时间.mobileVisible=true;
} else{
机构明细图表.mobileVisible=true;
图表单位.mobileVisible=true;
图表时间.mobileVisible=true;
}
clearData("范围参数2");
机构明细图表.visible=true;
图表时间.visible=true;
图表单位.visible=true;
debug(范围参数2.getObjects()[0][0]) |