全局参数只是一个参数名,只是全部模板都可以使用
就像系统自带的fine_username一样
你的需求是点击事件给全局参数赋值,可以参考下面js
$.ajax({
url: '/webroot/decision/view/form?op=fr_dialog&cmd=parameters_d',
type: 'POST',
data: {
"参数名":参数值
},
headers: {
sessionID: _g().currentSessionID
},
complete: function(res, status) {
if (window.FR && FR.Chart && FR.Chart.WebUtils) {
FR.Chart.WebUtils.clearCharts();
}
_g().gotoPage(contentPane.currentPageIndex); //回到当前页
}
});