选择年度时,月度的标签和下拉复选的消失,选月度年度的消失 var a = this.options.form.getWidgetByName("rq").getValue(); if (a == "NOT") { this.options.form.getWidgetByName("year").setVisible(false); this.options.form.getWidgetByName("month").setVisible(true); } else { this.options.form.getWidgetByName("year").setVisible(true); this.options.form.getWidgetByName("month").setVisible(false); } 这是我的js,rq对应单选,year对应年度的,month对应月度的,但是只有月度的可以消失并且不会再因为单选状态变化而变化 |