|  | @@ -228,6 +228,35 @@
 | 
	
		
			
				|  |  |                                      </div>
 | 
	
		
			
				|  |  |                                  </div>
 | 
	
		
			
				|  |  |                              </div>
 | 
	
		
			
				|  |  | +                            <div class="form-group">
 | 
	
		
			
				|  |  | +                                <label>检测单位:</label>
 | 
	
		
			
				|  |  | +                                <div class="row">
 | 
	
		
			
				|  |  | +                                    <div class="col-12 mb-2">
 | 
	
		
			
				|  |  | +                                        <div class="input-group input-group-sm">
 | 
	
		
			
				|  |  | +                                            <div class="input-group-prepend">
 | 
	
		
			
				|  |  | +                                                <span class="input-group-text">单位名称</span>
 | 
	
		
			
				|  |  | +                                            </div>
 | 
	
		
			
				|  |  | +                                            <input type="text" class="form-control" value="" id="detect-company" maxlength="100" oninput="limitReturn(this)">
 | 
	
		
			
				|  |  | +                                        </div>
 | 
	
		
			
				|  |  | +                                    </div>
 | 
	
		
			
				|  |  | +                                    <div class="col-6 pr-0">
 | 
	
		
			
				|  |  | +                                        <div class="input-group input-group-sm">
 | 
	
		
			
				|  |  | +                                            <div class="input-group-prepend">
 | 
	
		
			
				|  |  | +                                                <span class="input-group-text">法人代表</span>
 | 
	
		
			
				|  |  | +                                            </div>
 | 
	
		
			
				|  |  | +                                            <input type="text" class="form-control" value="" id="detect-corporation" maxlength="100" oninput="limitReturn(this)">
 | 
	
		
			
				|  |  | +                                        </div>
 | 
	
		
			
				|  |  | +                                    </div>
 | 
	
		
			
				|  |  | +                                    <div class="col-6">
 | 
	
		
			
				|  |  | +                                        <div class="input-group input-group-sm">
 | 
	
		
			
				|  |  | +                                            <div class="input-group-prepend">
 | 
	
		
			
				|  |  | +                                                <span class="input-group-text">签订日期</span>
 | 
	
		
			
				|  |  | +                                            </div>
 | 
	
		
			
				|  |  | +                                            <input type="date" class="form-control" value="" id="detect-date">
 | 
	
		
			
				|  |  | +                                        </div>
 | 
	
		
			
				|  |  | +                                    </div>
 | 
	
		
			
				|  |  | +                                </div>
 | 
	
		
			
				|  |  | +                            </div>
 | 
	
		
			
				|  |  |                          </div>
 | 
	
		
			
				|  |  |                          <div class="tab-pane" id="jscs">
 | 
	
		
			
				|  |  |                              <div class="form-group">
 | 
	
	
		
			
				|  | @@ -921,6 +950,10 @@
 | 
	
		
			
				|  |  |          $('#supervision2-company').val(property.construction_unit.supervision2.company);
 | 
	
		
			
				|  |  |          $('#supervision2-corporation').val(property.construction_unit.supervision2.corporation);
 | 
	
		
			
				|  |  |          $('#supervision2-date').val(property.construction_unit.supervision2.date);
 | 
	
		
			
				|  |  | +        // 检测单位
 | 
	
		
			
				|  |  | +        $('#detect-company').val(property.construction_unit.detect.company);
 | 
	
		
			
				|  |  | +        $('#detect-corporation').val(property.construction_unit.detect.corporation);
 | 
	
		
			
				|  |  | +        $('#detect-date').val(property.construction_unit.detect.date);
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          // 技术参数
 | 
	
		
			
				|  |  |          $('#load-level').find("option:contains('" + property.tech_param.loadLevel + "')").attr("selected",true);
 | 
	
	
		
			
				|  | @@ -982,6 +1015,11 @@
 | 
	
		
			
				|  |  |                      corporation: $('#supervision2-corporation').val(),
 | 
	
		
			
				|  |  |                      date: $('#supervision2-date').val(),
 | 
	
		
			
				|  |  |                  },
 | 
	
		
			
				|  |  | +                detect: {
 | 
	
		
			
				|  |  | +                    company: $('#detect-company').val(),
 | 
	
		
			
				|  |  | +                    corporation: $('#detect-corporation').val(),
 | 
	
		
			
				|  |  | +                    date: $('#detect-date').val(),
 | 
	
		
			
				|  |  | +                },
 | 
	
		
			
				|  |  |              },
 | 
	
		
			
				|  |  |              tech_param: {
 | 
	
		
			
				|  |  |                  loadLevel: $('#load-level').find("option:selected").text(),
 |