|
@@ -121,7 +121,7 @@
|
|
|
<td class="width-15 active"><label class="pull-right"> 设备基础是否可以扩容:</label></td>
|
|
|
<td class="width-35">
|
|
|
<c:choose>
|
|
|
- <c:when test="${construction.disclose.channel}">
|
|
|
+ <c:when test="${not empty construction.disclose.capacity}">
|
|
|
<input type='text' readonly="readonly" id='capacity' name="capacity" class="form-control required" value="${construction.disclose.capacity}"/>
|
|
|
</c:when>
|
|
|
<c:otherwise>
|
|
@@ -144,7 +144,7 @@
|
|
|
<td class="width-15 active"><label class="pull-right">方案安全隐患:</label></td>
|
|
|
<td class="width-35">
|
|
|
<c:choose>
|
|
|
- <c:when test="${construction.disclose.hiddenDanger}">
|
|
|
+ <c:when test="${not empty construction.disclose.hiddenDanger}">
|
|
|
<input type='text' readonly="readonly" id='hiddenDanger' name="hiddenDanger" class="form-control required" value="${construction.disclose.hiddenDanger}"/>
|
|
|
</c:when>
|
|
|
<c:otherwise>
|
|
@@ -155,7 +155,7 @@
|
|
|
<td class="width-15 active"><label class="pull-right"> 是否存在低压或通信线等影响施工:</label></td>
|
|
|
<td class="width-35">
|
|
|
<c:choose>
|
|
|
- <c:when test="${construction.disclose.influenceConstruction}">
|
|
|
+ <c:when test="${not empty construction.disclose.influenceConstruction}">
|
|
|
<input type='text' readonly="readonly" id='influenceConstruction' name="influenceConstruction" class="form-control required" value="${construction.disclose.influenceConstruction}"/>
|
|
|
</c:when>
|
|
|
<c:otherwise>
|
|
@@ -168,7 +168,7 @@
|
|
|
<td class="width-15 active"><label class="pull-right">立项重复:</label></td>
|
|
|
<td class="width-35">
|
|
|
<c:choose>
|
|
|
- <c:when test="${construction.disclose.projectRepetition}">
|
|
|
+ <c:when test="${not empty construction.disclose.projectRepetition}">
|
|
|
<input type='text' readonly="readonly" id='projectRepetition' name="projectRepetition" class="form-control required" value="${construction.disclose.projectRepetition}"/>
|
|
|
</c:when>
|
|
|
<c:otherwise>
|
|
@@ -179,7 +179,7 @@
|
|
|
<td class="width-15 active"><label class="pull-right"> 是否已实施:</label></td>
|
|
|
<td class="width-35">
|
|
|
<c:choose>
|
|
|
- <c:when test="${construction.disclose.implemented}">
|
|
|
+ <c:when test="${not empty construction.disclose.implemented}">
|
|
|
<input type='text' readonly="readonly" id='implemented' name="implemented" class="form-control required" value="${construction.disclose.implemented}"/>
|
|
|
</c:when>
|
|
|
<c:otherwise>
|
|
@@ -192,7 +192,7 @@
|
|
|
<td class="width-15 active"><label class="pull-right">变压器无负荷:</label></td>
|
|
|
<td class="width-35">
|
|
|
<c:choose>
|
|
|
- <c:when test="${construction.disclose.transformer}">
|
|
|
+ <c:when test="${not empty construction.disclose.transformer}">
|
|
|
<input type='text' readonly="readonly" id='transformer' name="transformer" class="form-control required" value="${construction.disclose.transformer}"/>
|
|
|
</c:when>
|
|
|
<c:otherwise>
|
|
@@ -209,7 +209,7 @@
|
|
|
<td class="width-15 active"><label class="pull-right"> 线路名称一致性:</label></td>
|
|
|
<td class="width-35">
|
|
|
<c:choose>
|
|
|
- <c:when test="${construction.disclose.lineName}">
|
|
|
+ <c:when test="${not empty construction.disclose.lineName}">
|
|
|
<input type='text' readonly="readonly" id='lineName' name="lineName" class="form-control required" value="${construction.disclose.lineName}"/>
|
|
|
</c:when>
|
|
|
<c:otherwise>
|
|
@@ -221,7 +221,7 @@
|
|
|
<td class="width-15 active"><label class="pull-right">工程量是否一致:</label></td>
|
|
|
<td class="width-35">
|
|
|
<c:choose>
|
|
|
- <c:when test="${construction.disclose.quantities}">
|
|
|
+ <c:when test="${not empty construction.disclose.quantities}">
|
|
|
<input type='text' readonly="readonly" id='quantities' name="quantities" class="form-control required" value="${construction.disclose.quantities}"/>
|
|
|
</c:when>
|
|
|
<c:otherwise>
|
|
@@ -235,7 +235,7 @@
|
|
|
<td class="width-15 active"><label class="pull-right"> 设备、开关、杆号一致性:</label></td>
|
|
|
<td class="width-35">
|
|
|
<c:choose>
|
|
|
- <c:when test="${construction.disclose.rodNumber}">
|
|
|
+ <c:when test="${not empty construction.disclose.rodNumber}">
|
|
|
<input type='text' readonly="readonly" id='rodNumber' name="rodNumber" class="form-control required" value="${construction.disclose.rodNumber}"/>
|
|
|
</c:when>
|
|
|
<c:otherwise>
|
|
@@ -253,7 +253,7 @@
|
|
|
<td class="width-15 active"><label class="pull-right">政处类型:</label></td>
|
|
|
<td class="width-35">
|
|
|
<c:choose>
|
|
|
- <c:when test="${construction.disclose.administrationType}">
|
|
|
+ <c:when test="${not empty construction.disclose.administrationType}">
|
|
|
<input type='text' readonly="readonly" id='administrationType' name="administrationType" class="form-control required" value="${construction.disclose.administrationType}"/>
|
|
|
</c:when>
|
|
|
<c:otherwise>
|
|
@@ -274,7 +274,7 @@
|
|
|
<td class="width-15 active"><label class="pull-right"> DTU安放方式核查:</label></td>
|
|
|
<td class="width-35">
|
|
|
<c:choose>
|
|
|
- <c:when test="${construction.disclose.placementMode}">
|
|
|
+ <c:when test="${not empty construction.disclose.placementMode}">
|
|
|
<input type='text' readonly="readonly" id='placementMode' name="placementMode" class="form-control required" value="${construction.disclose.placementMode}"/>
|
|
|
</c:when>
|
|
|
<c:otherwise>
|