|
@@ -4,9 +4,14 @@
|
|
<head>
|
|
<head>
|
|
<title>报告详情管理</title>
|
|
<title>报告详情管理</title>
|
|
<meta name="decorator" content="default"/>
|
|
<meta name="decorator" content="default"/>
|
|
|
|
+ <script type="text/javascript" src="${ctxStatic}/layui/layui.js"></script>
|
|
|
|
+ <link rel='stylesheet' type="text/css" href="${ctxStatic}/layui/css/layui.css"/>
|
|
<%@include file="/webpage/include/treetable.jsp" %>
|
|
<%@include file="/webpage/include/treetable.jsp" %>
|
|
<script type="text/javascript">
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$(document).ready(function() {
|
|
|
|
+ layui.use(['form', 'layer'], function () {
|
|
|
|
+ var form = layui.form;
|
|
|
|
+ })
|
|
$("#upTable").treeTable({expandLevel : 5},{ expandable: true });
|
|
$("#upTable").treeTable({expandLevel : 5},{ expandable: true });
|
|
$("#gistdata_upTable").treeTable({expandLevel : 5},{ expandable: true });
|
|
$("#gistdata_upTable").treeTable({expandLevel : 5},{ expandable: true });
|
|
$("#upTable_other").treeTable({expandLevel : 5},{ expandable: true });
|
|
$("#upTable_other").treeTable({expandLevel : 5},{ expandable: true });
|
|
@@ -34,6 +39,15 @@
|
|
$("#other_btn").click(function () {
|
|
$("#other_btn").click(function () {
|
|
$("#other_file").click();
|
|
$("#other_file").click();
|
|
});
|
|
});
|
|
|
|
+ if ("${projectReportData.contractCategory}" !=null){
|
|
|
|
+ if("${projectReportData.contractCategory}"=='1'){
|
|
|
|
+ $("#contractFee").parent().parent().hide();
|
|
|
|
+ $("#contractRate").parent().parent().show();
|
|
|
|
+ }else if("${projectReportData.contractCategory}"=='0'){
|
|
|
|
+ $("#contractFee").parent().parent().show();
|
|
|
|
+ $("#contractRate").parent().parent().hide();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
});
|
|
});
|
|
|
|
|
|
function readOpenInfo(value) {
|
|
function readOpenInfo(value) {
|
|
@@ -49,7 +63,7 @@
|
|
<body>
|
|
<body>
|
|
<div class="single-form">
|
|
<div class="single-form">
|
|
<div class="container${container} view-form">
|
|
<div class="container${container} view-form">
|
|
- <form:form id="inputForm" modelAttribute="projectcontentinfo" action="${ctx}/ruralProject/ruralProjectMessage/reportAudit" method="post" class="form-horizontal">
|
|
|
|
|
|
+ <form:form id="inputForm" modelAttribute="projectcontentinfo" action="${ctx}/ruralProject/ruralProjectMessage/reportAudit" method="post" class="form-horizontal layui-form">
|
|
<%--<div class="form-group layui-row first lw12">
|
|
<%--<div class="form-group layui-row first lw12">
|
|
<div class="form-group-label"><h2>基本信息</h2></div>
|
|
<div class="form-group-label"><h2>基本信息</h2></div>
|
|
<div class="layui-item layui-col-sm6">
|
|
<div class="layui-item layui-col-sm6">
|
|
@@ -284,9 +298,22 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm6">
|
|
<div class="layui-item layui-col-sm6">
|
|
|
|
+ <label class="layui-form-label">合同类别:</label>
|
|
|
|
+ <div class="layui-input-block with-icon">
|
|
|
|
+ <input type="radio" title="金额合同" lay-filter="jine" name="projectReportData.contractCategory" id="jine" value="0" disabled <c:if test="${projectReportData.contractCategory=='0'}">checked</c:if>>
|
|
|
|
+ <input type="radio" title="费率合同" lay-filter="jine" name="projectReportData.contractCategory" id="jine1" value="1" disabled <c:if test="${projectReportData.contractCategory=='1'}">checked</c:if>>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="layui-item layui-col-sm6">
|
|
<label class="layui-form-label">合同价(元):</label>
|
|
<label class="layui-form-label">合同价(元):</label>
|
|
<div class="layui-input-block with-icon">
|
|
<div class="layui-input-block with-icon">
|
|
- <form:input id="contractFee" path="projectReportData.contractFee" htmlEscape="false" class="form-control layui-input" readonly="true"/>
|
|
|
|
|
|
+ <form:input placeholder="请输入合同价" id="contractFee" path="projectReportData.contractFee" htmlEscape="false" readonly="true" class="form-control layui-input number"/>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="layui-item layui-col-sm6" style="display: none;">
|
|
|
|
+ <label class="layui-form-label">费率合同(费率):</label>
|
|
|
|
+ <div class="layui-input-block with-icon">
|
|
|
|
+ <form:input placeholder="请输入合同费率" id="contractRate" path="projectReportData.contractRate" htmlEscape="false" readonly="true" class="form-control layui-input "/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm6">
|
|
<div class="layui-item layui-col-sm6">
|