|
@@ -603,7 +603,7 @@
|
|
|
$('#supervision2-date').val(property.construction_unit.supervision2.date);
|
|
|
|
|
|
// 技术参数
|
|
|
- $('#loadLevel').val(property.tech_param.loadLevel);
|
|
|
+ $('#load-level').find("option:contains('" + property.tech_param.loadLevel + "')").attr("selected",true);;
|
|
|
$('#length').val(property.tech_param.loadLength);
|
|
|
$('#start-peg').val(property.tech_param.startPeg);
|
|
|
$('#end-peg').val(property.tech_param.endPeg);
|
|
@@ -650,7 +650,7 @@
|
|
|
},
|
|
|
},
|
|
|
tech_param: {
|
|
|
- loadLevel: _.toNumber($('#loadLevel').val()),
|
|
|
+ loadLevel: $('#load-level').find("option:selected").text(),
|
|
|
loadLength: _.toNumber($('#length').val()),
|
|
|
startPeg: $('#start-peg').val(),
|
|
|
endPeg: $('#end-peg').val(),
|