点击按钮1,$p 为1。
点击按钮0,$p 为0。
根据参数p的数值进行条件属性的设置
参数绑定为控件,按钮增加点击事件,设置$p绑定控件的值即可!
按钮增加 点击事件
var w = this.options.form.getWidgetByName("p")//取得P控件
w.setValue("1");//设置P控件值等于1
不用变量也行
this.options.form.getWidgetByName("p").setValue("1");
https://help.fanruan.com/finereport10.0/doc-view-4007.html
参考上面的文档,点击按钮时给控件赋值,然后$p取对应控件的值即可
this.options.form.getWidgetByName("p").setValue("1")
this.options.form.getWidgetByName("p").setValue("0")
两个按钮分别赋值对参数p