|
@@ -215,11 +215,11 @@
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
- /*var checkedCount = $('input[type=checkbox]:checked').length;
|
|
|
+ var checkedCount = $('input[type=checkbox]:checked').length;
|
|
|
if(checkedCount == 0){
|
|
|
parent.layer.msg("请选择咨询项目造价包含内容说明!", {icon: 5});
|
|
|
return false;
|
|
|
- }*/
|
|
|
+ }
|
|
|
|
|
|
var BaoGaoShuQianFaDate = $("#BaoGaoShuQianFaDate").val();
|
|
|
var s = BaoGaoShuQianFaDate.replace(/-/g,"/");
|
|
@@ -612,6 +612,11 @@
|
|
|
$("#GCGMValueParameter").removeClass("number");
|
|
|
$("#GCGMValueParameter").addClass("number");
|
|
|
}
|
|
|
+ var contents=${ruralProjectRecordsReported.contentsIncludeList}
|
|
|
+ for(var i=0;i<contents.length;i++){
|
|
|
+ var con=contents[i];
|
|
|
+ $(".contents_"+con+"").prop("checked",true)
|
|
|
+ }
|
|
|
});
|
|
|
|
|
|
function ZiXunBDEChange(){
|
|
@@ -1369,9 +1374,12 @@
|
|
|
<div class="form-group layui-row first lw9">
|
|
|
<div class="form-group-label"><h2>咨询项目造价包含内容说明</h2></div>
|
|
|
<div class="layui-item layui-col-sm12">
|
|
|
- <label class="layui-form-label double-line">咨询项目造价包含内容说明(勾选):</label>
|
|
|
+ <label class="layui-form-label double-line"><span class="require-item">*</span>咨询项目造价包含内容说明(勾选):</label>
|
|
|
<div class="layui-input-block paddingDiv">
|
|
|
- <form:checkboxes path="contentsIncludeList" lay-filter="chargeCriterionList" lay-skin="primary" itemLabel="label" itemValue="value" htmlEscape="true" items="${fns:getMainDictList('contents_include')}" />
|
|
|
+ <c:forEach items="${fns:getMainDictList('contents_include')}" var="contents">
|
|
|
+ <input type="checkbox" name="contentsIncludeList" class="contents_${contents.value}" value="${contents.value}" title="${contents.label}"/>
|
|
|
+ </c:forEach>
|
|
|
+ <%--<form:checkboxes path="contentsIncludeList" lay-filter="chargeCriterionList" lay-skin="primary" itemLabel="label" itemValue="value" htmlEscape="true" items="${fns:getMainDictList('contents_include')}" />--%>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="overallProcessDiv" style="display: none">
|