|
@@ -42,6 +42,12 @@
|
|
var electricalAdjusted = $('#electricalAdjusted').val();
|
|
var electricalAdjusted = $('#electricalAdjusted').val();
|
|
var doesChange = $('#doesChange').val();
|
|
var doesChange = $('#doesChange').val();
|
|
var otherAdjusted = $('#otherAdjusted').val();
|
|
var otherAdjusted = $('#otherAdjusted').val();
|
|
|
|
+ var difficultResolve = $('#difficultResolve').val();
|
|
|
|
+ var preconditions = $('#preconditions').val();
|
|
|
|
+ var customizedMaterials = $('#customizedMaterials').val();
|
|
|
|
+ var demolitionMaterials = $('#demolitionMaterials').val();
|
|
|
|
+ var drawingAnnotation = $('#drawingAnnotation').val();
|
|
|
|
+ var powerOutage = $('#powerOutage').val();
|
|
if (hasImplemented == '是') {
|
|
if (hasImplemented == '是') {
|
|
$('#sceneDescription').attr('placeholder', '现场情况描述不能为空');
|
|
$('#sceneDescription').attr('placeholder', '现场情况描述不能为空');
|
|
}else {
|
|
}else {
|
|
@@ -96,6 +102,40 @@
|
|
}else {
|
|
}else {
|
|
$('#descriptionReasons').removeAttr('placeholder');
|
|
$('#descriptionReasons').removeAttr('placeholder');
|
|
}
|
|
}
|
|
|
|
+ if (difficultResolve == '是') {
|
|
|
|
+ $('#affairsDescription').attr('placeholder', '政处问题描述不能为空');
|
|
|
|
+ }else {
|
|
|
|
+ $('#affairsDescription').removeAttr('placeholder');
|
|
|
|
+ }
|
|
|
|
+ if (preconditions == '是') {
|
|
|
|
+ $('#preconditionDescription').attr('placeholder', '前置条件描述不能为空');
|
|
|
|
+ }else {
|
|
|
|
+ $('#preconditionDescription').removeAttr('placeholder');
|
|
|
|
+ }
|
|
|
|
+ if (customizedMaterials == '是') {
|
|
|
|
+ $('#reasonDescription').attr('placeholder', '定制原因描述不能为空');
|
|
|
|
+ $('#materialDescription').attr('placeholder', '定制物资描述不能为空');
|
|
|
|
+ }else {
|
|
|
|
+ $('#reasonDescription').removeAttr('placeholder');
|
|
|
|
+ $('#materialDescription').removeAttr('placeholder');
|
|
|
|
+ }
|
|
|
|
+ if (demolitionMaterials == '是') {
|
|
|
|
+ $('#modelDescription').attr('placeholder', '型号不一致描述不能为空');
|
|
|
|
+ $('#quantityDescription').attr('placeholder', '数量不一致描述不能为空');
|
|
|
|
+ }else {
|
|
|
|
+ $('#modelDescription').removeAttr('placeholder');
|
|
|
|
+ $('#quantityDescription').removeAttr('placeholder');
|
|
|
|
+ }
|
|
|
|
+ if (drawingAnnotation == '是') {
|
|
|
|
+ $('#drawingProblem').attr('placeholder', '图纸标注问题描述不能为空');
|
|
|
|
+ }else {
|
|
|
|
+ $('#drawingProblem').removeAttr('placeholder');
|
|
|
|
+ }
|
|
|
|
+ if (powerOutage == '是') {
|
|
|
|
+ $('#powerProblem').attr('placeholder', '停电问题问题描述不能为空');
|
|
|
|
+ }else {
|
|
|
|
+ $('#powerProblem').removeAttr('placeholder');
|
|
|
|
+ }
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
|
|
@@ -151,6 +191,22 @@
|
|
var automatedAdjustment = $('#automatedAdjustment').val();
|
|
var automatedAdjustment = $('#automatedAdjustment').val();
|
|
var otherAdjusted = $('#otherAdjusted').val();
|
|
var otherAdjusted = $('#otherAdjusted').val();
|
|
var descriptionReasons = $('#descriptionReasons').val();
|
|
var descriptionReasons = $('#descriptionReasons').val();
|
|
|
|
+ var difficultResolve = $('#difficultResolve').val();
|
|
|
|
+ var affairsDescription = $('#affairsDescription').val();
|
|
|
|
+ var preconditions = $('#preconditions').val();
|
|
|
|
+ var preconditionDescription = $('#preconditionDescription').val();
|
|
|
|
+ var customizedMaterials = $('#customizedMaterials').val();
|
|
|
|
+ var customizedCan = $('#customizedCan').val();
|
|
|
|
+ var reasonDescription = $('#reasonDescription').val();
|
|
|
|
+ var materialDescription = $('#materialDescription').val();
|
|
|
|
+ var demolitionMaterials = $('#demolitionMaterials').val();
|
|
|
|
+ var modelDescription = $('#modelDescription').val();
|
|
|
|
+ var quantityDescription = $('#quantityDescription').val();
|
|
|
|
+ var drawingAnnotation = $('#drawingAnnotation').val();
|
|
|
|
+ var drawingProblem = $('#drawingProblem').val();
|
|
|
|
+ var powerOutage = $('#powerOutage').val();
|
|
|
|
+ var powerProblem = $('#powerProblem').val();
|
|
|
|
+
|
|
if (hasImplemented == '是') {
|
|
if (hasImplemented == '是') {
|
|
if (sceneDescription == '') {
|
|
if (sceneDescription == '') {
|
|
flag = false;
|
|
flag = false;
|
|
@@ -195,6 +251,36 @@
|
|
flag = false;
|
|
flag = false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ if (difficultResolve == '是') {
|
|
|
|
+ if (affairsDescription == '') {
|
|
|
|
+ flag = false;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if (preconditions == '是') {
|
|
|
|
+ if (preconditionDescription == '') {
|
|
|
|
+ flag = false;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if (customizedMaterials == '是' || customizedCan == '是') {
|
|
|
|
+ if (reasonDescription == '' || materialDescription == '') {
|
|
|
|
+ flag = false;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if (demolitionMaterials == '是') {
|
|
|
|
+ if (modelDescription == '' || quantityDescription == '') {
|
|
|
|
+ flag = false;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if (drawingAnnotation == '是') {
|
|
|
|
+ if (drawingProblem == '') {
|
|
|
|
+ flag = false;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if (powerOutage == '是') {
|
|
|
|
+ if (powerProblem == '') {
|
|
|
|
+ flag = false;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
return flag;
|
|
return flag;
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
@@ -380,6 +466,209 @@
|
|
cssClass="form-control"/>
|
|
cssClass="form-control"/>
|
|
</td>
|
|
</td>
|
|
</tr>
|
|
</tr>
|
|
|
|
+ <tr>
|
|
|
|
+
|
|
|
|
+ <td class="width-15 active"><label class="pull-right"> 是否存在难以解决的政处:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:select id="difficultResolve" path="disclose.difficultResolve"
|
|
|
|
+ cssClass="form-control">
|
|
|
|
+ <form:option value="否"/>
|
|
|
|
+ <form:option value="是"/>
|
|
|
|
+ </form:select>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="width-15 active"><label class="pull-right">是否需要进行设计变更:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:select id="designChanges" path="disclose.designChanges"
|
|
|
|
+ cssClass="form-control">
|
|
|
|
+ <form:option value="否"/>
|
|
|
|
+ <form:option value="是"/>
|
|
|
|
+ </form:select>
|
|
|
|
+ </td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+
|
|
|
|
+ <td class="width-15 active"><label class="pull-right"> 是否需要进行项目关闭:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:select id="needsClosed" path="disclose.needsClosed"
|
|
|
|
+ cssClass="form-control">
|
|
|
|
+ <form:option value="否"/>
|
|
|
|
+ <form:option value="是"/>
|
|
|
|
+ </form:select>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="width-15 active"><label class="pull-right">政处问题描述:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:input id="affairsDescription" path="disclose.affairsDescription"
|
|
|
|
+ cssClass="form-control"/>
|
|
|
|
+ </td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+
|
|
|
|
+ <td class="width-15 active"><label class="pull-right"> 是否需要规划报批:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:select id="planningRequired" path="disclose.planningRequired"
|
|
|
|
+ cssClass="form-control">
|
|
|
|
+ <form:option value="否"/>
|
|
|
|
+ <form:option value="是"/>
|
|
|
|
+ </form:select>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="width-15 active"><label class="pull-right">是否涉及高铁、高速:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:select id="highSpeed" path="disclose.highSpeed"
|
|
|
|
+ cssClass="form-control">
|
|
|
|
+ <form:option value="否"/>
|
|
|
|
+ <form:option value="是"/>
|
|
|
|
+ </form:select>
|
|
|
|
+ </td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+
|
|
|
|
+ <td class="width-15 active"><label class="pull-right"> 是否存在复杂民事政处:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:select id="affairsOffice" path="disclose.affairsOffice"
|
|
|
|
+ cssClass="form-control">
|
|
|
|
+ <form:option value="否"/>
|
|
|
|
+ <form:option value="是"/>
|
|
|
|
+ </form:select>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="width-15 active"><label class="pull-right">图纸方案是否存在前置条件:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:select id="preconditions" path="disclose.preconditions"
|
|
|
|
+ cssClass="form-control">
|
|
|
|
+ <form:option value="否"/>
|
|
|
|
+ <form:option value="是"/>
|
|
|
|
+ </form:select>
|
|
|
|
+ </td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+
|
|
|
|
+ <td class="width-15 active"><label class="pull-right"> 前置条件描述:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:input id="preconditionDescription" path="disclose.preconditionDescription"
|
|
|
|
+ cssClass="form-control"/>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="width-15 active"><label class="pull-right">是否需要定制物资:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:select id="customizedMaterials" path="disclose.customizedMaterials"
|
|
|
|
+ cssClass="form-control">
|
|
|
|
+ <form:option value="否"/>
|
|
|
|
+ <form:option value="是"/>
|
|
|
|
+ </form:select>
|
|
|
|
+ </td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+
|
|
|
|
+ <td class="width-15 active"><label class="pull-right"> 是否能定制:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:select id="customizedCan" path="disclose.customizedCan"
|
|
|
|
+ cssClass="form-control">
|
|
|
|
+ <form:option value="否"/>
|
|
|
|
+ <form:option value="是"/>
|
|
|
|
+ </form:select>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="width-15 active"><label class="pull-right">定制原因描述:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:input id="reasonDescription" path="disclose.reasonDescription"
|
|
|
|
+ cssClass="form-control"/>
|
|
|
|
+ </td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+
|
|
|
|
+ <td class="width-15 active"><label class="pull-right"> 定制物资描述:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:input id="materialDescription" path="disclose.materialDescription"
|
|
|
|
+ cssClass="form-control"/>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="width-15 active"><label class="pull-right">拆旧物资是否与设计一致:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:select id="demolitionMaterials" path="disclose.demolitionMaterials"
|
|
|
|
+ cssClass="form-control">
|
|
|
|
+ <form:option value="否"/>
|
|
|
|
+ <form:option value="是"/>
|
|
|
|
+ </form:select>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+
|
|
|
|
+ <td class="width-15 active"><label class="pull-right"> 型号不一致描述:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:input id="modelDescription" path="disclose.modelDescription"
|
|
|
|
+ cssClass="form-control"/>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="width-15 active"><label class="pull-right">数量不一致描述:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:input id="quantityDescription" path="disclose.quantityDescription"
|
|
|
|
+ cssClass="form-control"/>
|
|
|
|
+ </td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+
|
|
|
|
+ <td class="width-15 active"><label class="pull-right"> 图纸标注是否存在问题:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:select id="drawingAnnotation" path="disclose.drawingAnnotation"
|
|
|
|
+ cssClass="form-control">
|
|
|
|
+ <form:option value="否"/>
|
|
|
|
+ <form:option value="是"/>
|
|
|
|
+ </form:select>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="width-15 active"><label class="pull-right">图纸标注问题描述:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:input id="drawingProblem" path="disclose.drawingProblem"
|
|
|
|
+ cssClass="form-control"/>
|
|
|
|
+ </td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+
|
|
|
|
+ <td class="width-15 active"><label class="pull-right"> 是否存在停电问题:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:select id="powerOutage" path="disclose.powerOutage"
|
|
|
|
+ cssClass="form-control">
|
|
|
|
+ <form:option value="否"/>
|
|
|
|
+ <form:option value="是"/>
|
|
|
|
+ </form:select>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="width-15 active"><label class="pull-right">停电问题问题描述:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:input id="powerProblem" path="disclose.powerProblem"
|
|
|
|
+ cssClass="form-control"/>
|
|
|
|
+ </td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+
|
|
|
|
+ <td class="width-15 active"><label class="pull-right"> 是否邻近带电线路:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:select id="nearLiveLine" path="disclose.nearLiveLine"
|
|
|
|
+ cssClass="form-control">
|
|
|
|
+ <form:option value="否"/>
|
|
|
|
+ <form:option value="是"/>
|
|
|
|
+ </form:select>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="width-15 active"><label class="pull-right">是否下穿高压线路:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:select id="highVoltageLine" path="disclose.highVoltageLine"
|
|
|
|
+ cssClass="form-control">
|
|
|
|
+ <form:option value="否"/>
|
|
|
|
+ <form:option value="是"/>
|
|
|
|
+ </form:select>
|
|
|
|
+ </td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+
|
|
|
|
+ <td class="width-15 active"><label class="pull-right"> 是否存在复杂管线:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:select id="complexPipeline" path="disclose.complexPipeline"
|
|
|
|
+ cssClass="form-control">
|
|
|
|
+ <form:option value="否"/>
|
|
|
|
+ <form:option value="是"/>
|
|
|
|
+ </form:select>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="width-15 active"><label class="pull-right">是否涉及复杂停电:</label></td>
|
|
|
|
+ <td class="width-35">
|
|
|
|
+ <form:select id="complicatedPower" path="disclose.complicatedPower"
|
|
|
|
+ cssClass="form-control">
|
|
|
|
+ <form:option value="否"/>
|
|
|
|
+ <form:option value="是"/>
|
|
|
|
+ </form:select>
|
|
|
|
+ </td>
|
|
|
|
+ </tr>
|
|
</tbody>
|
|
</tbody>
|
|
</table>
|
|
</table>
|
|
</form:form>
|
|
</form:form>
|