| | |
| | | $('#btn_ensure').addClass('whyc-btn-disabled'); // 设定参数无效
|
| | | },
|
| | | active:function() {
|
| | | $('#btn_start_test').removeClass('whyc-btn-disabled'); // 启动测试可以点击
|
| | | $('#btn_ensure').removeClass('whyc-btn-disabled'); // 设置参数可以点击
|
| | | if(!$('#btn_start_test').hasClass('no-remove-disabled')) {
|
| | | $('#btn_start_test').removeClass('whyc-btn-disabled'); // 启动测试可以点击
|
| | | }
|
| | | |
| | | if(!$('#btn_ensure').hasClass('no-remove-disabled')) {
|
| | | $('#btn_ensure').removeClass('whyc-btn-disabled'); // 设置参数可以点击
|
| | | }
|
| | | |
| | | },
|
| | | startTest:function(param) {
|
| | | if(param) {
|
| | |
| | | $('#TempUpHighLimit').val(list[0].fsparam.MonomerTmp_High);
|
| | |
|
| | | // 充电电流
|
| | | $('#ChargeCurrSet').testVal('option', 'msg', '取值范围0~'+list[0].binf.charge_curr_max+'A');
|
| | | $('#ChargeCurrSet').testVal('option', 'allOpts', {
|
| | | regVal: true,
|
| | | min: 0,
|
| | | max: list[0].binf.charge_curr_max,
|
| | | msg: '取值范围0~'+list[0].binf.charge_curr_max+'A'
|
| | | });
|
| | | |
| | | $('#ChargeCurrSetLabel').text('充电电流(0~'+list[0].binf.charge_curr_max+'A)');
|
| | | }
|
| | |
|