js 想写 报备类型下拉控件 b_type="xxx"时 合同名称下拉控件隐藏 其他时候显示 var s = this.getValue("b_type"); var a= this.options.form.getWidgetByName("label4"); var b= this.options.form.getWidgetByName("contract_name"); if (s=="重计量"){ a.setVisible(true); b.setVisible(true); } else { a.setVisible(false); b.setVisible(false); } 为啥不行 |