|
@@ -67,6 +67,31 @@
|
|
|
layui.form.render(); //重新渲染显示效果
|
|
|
}
|
|
|
});
|
|
|
+
|
|
|
+
|
|
|
+ $('#myDiv').bind('mouseover', function (event) {
|
|
|
+ console.log(1238123)
|
|
|
+ var $link = $(event.target).closest('input');
|
|
|
+ if ($link.length < 1) { return; }
|
|
|
+ var link = $link[0];
|
|
|
+ if (event.type == 'mouseover') {
|
|
|
+ $liveTip.css({
|
|
|
+ top: event.pageY,
|
|
|
+ left: event.pageX
|
|
|
+ });
|
|
|
+
|
|
|
+ link.title = '';
|
|
|
+ $liveTip.html('<div>' + link.value + '</div>').show();
|
|
|
+ };
|
|
|
+
|
|
|
+ if (event.type == 'mouseout') {
|
|
|
+ $liveTip.hide();
|
|
|
+ if (tipTitle) {
|
|
|
+ link.title = tipTitle;
|
|
|
+ };
|
|
|
+ };
|
|
|
+ });
|
|
|
+
|
|
|
//本月项目
|
|
|
form.on('radio(projectReportThisMonth)', function(data){
|
|
|
// console.log(data.elem); //得到radio原始DOM对象
|
|
@@ -1103,9 +1128,9 @@
|
|
|
<%-- --%>
|
|
|
<c:if test="${nyr eq '月'}">
|
|
|
<div class="layui-input-block" style="float: right;height: 17.9px;bottom: 10px;margin: 0px;padding-left: 0px" >
|
|
|
- <input type="radio" title="当月" name="projectReport" value="monthOne" lay-filter="projectReportMonth" checked id="monthOne">
|
|
|
- <input type="radio" title="本月" name="projectReport" value="thisMonth" lay-filter="projectReportMonth" id="thisMonth">
|
|
|
- <input type="radio" title="当年" name="projectReport" value="yearOne" lay-filter="projectReportMonth" id="yearOne" >
|
|
|
+ <input type="radio" title="当月" name="projectReport" value="monthOne" lay-filter="projectReportMonth" checked id="monthOne"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0007')"></a>
|
|
|
+ <input type="radio" title="本月" name="projectReport" value="thisMonth" lay-filter="projectReportMonth" id="thisMonth"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0008')"></a>
|
|
|
+ <input type="radio" title="当年" name="projectReport" value="yearOne" lay-filter="projectReportMonth" id="yearOne" ><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0009')"></a>
|
|
|
</div>
|
|
|
</c:if>
|
|
|
</h2>
|
|
@@ -1117,9 +1142,9 @@
|
|
|
<div class="form-group-label"><h2>项目本月月报
|
|
|
<c:if test="${nyr eq '月'}">
|
|
|
<div class="layui-input-block" style="float: right;height: 17.9px;bottom: 10px;margin: 0px;padding-left: 0px">
|
|
|
- <input type="radio" name="projectReport" value="lastMonthThird" lay-filter="projectReportThisMonth" style="margin: 0px;padding-left: 0px" id="lastMonthThird" title="当月">
|
|
|
- <input type="radio" name="projectReport" value="thisMonthThird" lay-filter="projectReportThisMonth" style="margin: 0px;padding-left: 0px" id="thisMonthThird" title="本月">
|
|
|
- <input type="radio" name="projectReport" value="yearThird" lay-filter="projectReportThisMonth" style="margin: 0px;padding-left: 0px" id="yearThird" title="当年">
|
|
|
+ <input type="radio" name="projectReport" value="lastMonthThird" lay-filter="projectReportThisMonth" style="margin: 0px;padding-left: 0px" id="lastMonthThird" title="当月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0007')"></a>
|
|
|
+ <input type="radio" name="projectReport" value="thisMonthThird" lay-filter="projectReportThisMonth" style="margin: 0px;padding-left: 0px" id="thisMonthThird" title="本月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0008')"></a>
|
|
|
+ <input type="radio" name="projectReport" value="yearThird" lay-filter="projectReportThisMonth" style="margin: 0px;padding-left: 0px" id="yearThird" title="当年"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0009')"></a>
|
|
|
</div>
|
|
|
</c:if>
|
|
|
</h2></div>
|
|
@@ -1131,9 +1156,9 @@
|
|
|
<div class="form-group-label"><h2>项目年报
|
|
|
<c:if test="${nyr eq '月'}">
|
|
|
<div class="layui-input-block" style="float: right;height: 17.9px;bottom: 10px;margin: 0px;padding-left: 0px">
|
|
|
- <input type="radio" name="projectReport" value="monthTwo" lay-filter="projectReportYear" style="margin: 0px;padding-left: 0px" id="monthTwo" title="当月">
|
|
|
- <input type="radio" name="projectReport" value="thisMonthTwo" lay-filter="projectReportYear" style="margin: 0px;padding-left: 0px" id="thisMonthTwo" title="本月">
|
|
|
- <input type="radio" name="projectReport" value="yearTwo" lay-filter="projectReportYear" style="margin: 0px;padding-left: 0px" id="yearTwo" title="当年">
|
|
|
+ <input type="radio" name="projectReport" value="monthTwo" lay-filter="projectReportYear" style="margin: 0px;padding-left: 0px" id="monthTwo" title="当月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0007')"></a>
|
|
|
+ <input type="radio" name="projectReport" value="thisMonthTwo" lay-filter="projectReportYear" style="margin: 0px;padding-left: 0px" id="thisMonthTwo" title="本月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0008')"></a>
|
|
|
+ <input type="radio" name="projectReport" value="yearTwo" lay-filter="projectReportYear" style="margin: 0px;padding-left: 0px" id="yearTwo" title="当年"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0009')"></a>
|
|
|
</div>
|
|
|
</c:if>
|
|
|
</h2></div>
|
|
@@ -1145,9 +1170,9 @@
|
|
|
<div class="form-group-label"><h2>开票${nyr}报
|
|
|
<c:if test="${nyr eq '月'}">
|
|
|
<div class="layui-input-block" style="float: right;height: 17.9px;bottom: 10px;">
|
|
|
- <input type="radio" name="invoice" value="invoiceMonthOne" lay-filter="invoiceMonth" id="invoiceMonthOne" checked title="当月">
|
|
|
- <input type="radio" name="invoice" value="invoiceThisMonthOne" lay-filter="invoiceMonth" id="invoiceThisMonthOne" title="本月">
|
|
|
- <input type="radio" name="invoice" value="invoiceYearOne" lay-filter="invoiceMonth" id="invoiceYearOne" title="当年">
|
|
|
+ <input type="radio" name="invoice" value="invoiceMonthOne" lay-filter="invoiceMonth" id="invoiceMonthOne" checked title="当月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0007')"></a>
|
|
|
+ <input type="radio" name="invoice" value="invoiceThisMonthOne" lay-filter="invoiceMonth" id="invoiceThisMonthOne" title="本月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0008')"></a>
|
|
|
+ <input type="radio" name="invoice" value="invoiceYearOne" lay-filter="invoiceMonth" id="invoiceYearOne" title="当年"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0009')"></a>
|
|
|
</div>
|
|
|
</c:if>
|
|
|
</h2></div>
|
|
@@ -1159,9 +1184,9 @@
|
|
|
<div class="form-group-label"><h2>本月开票月报
|
|
|
<c:if test="${nyr eq '月'}">
|
|
|
<div class="layui-input-block" style="float: right;height: 17.9px;bottom: 10px;">
|
|
|
- <input type="radio" name="invoice" value="invoiceMonthThird" lay-filter="invoiceThisMonth" id="invoiceMonthThird" title="当月">
|
|
|
- <input type="radio" name="invoice" value="invoiceThisMonthThird" lay-filter="invoiceThisMonth" id="invoiceThisMonthThird" title="本月">
|
|
|
- <input type="radio" name="invoice" value="invoiceYearThird" lay-filter="invoiceThisMonth" id="invoiceYearThird" title="当年">
|
|
|
+ <input type="radio" name="invoice" value="invoiceMonthThird" lay-filter="invoiceThisMonth" id="invoiceMonthThird" title="当月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0007')"></a>
|
|
|
+ <input type="radio" name="invoice" value="invoiceThisMonthThird" lay-filter="invoiceThisMonth" id="invoiceThisMonthThird" title="本月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0008')"></a>
|
|
|
+ <input type="radio" name="invoice" value="invoiceYearThird" lay-filter="invoiceThisMonth" id="invoiceYearThird" title="当年"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0009')"></a>
|
|
|
</div>
|
|
|
</c:if>
|
|
|
</h2></div>
|
|
@@ -1173,9 +1198,9 @@
|
|
|
<div class="form-group-label"><h2>开票年报
|
|
|
<c:if test="${nyr eq '月'}">
|
|
|
<div class="layui-input-block" style="float: right;height: 17.9px;bottom: 10px;">
|
|
|
- <input type="radio" name="invoice" value="invoiceMonthTwo" lay-filter="invoiceYear" id="invoiceMonthTwo" title="当月">
|
|
|
- <input type="radio" name="invoice" value="invoiceThisMonthTwo" lay-filter="invoiceYear" id="invoiceThisMonthTwo" title="本月">
|
|
|
- <input type="radio" name="invoice" value="invoiceYearTwo" lay-filter="invoiceYear" id="invoiceYearTwo" title="当年">
|
|
|
+ <input type="radio" name="invoice" value="invoiceMonthTwo" lay-filter="invoiceYear" id="invoiceMonthTwo" title="当月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0007')"></a>
|
|
|
+ <input type="radio" name="invoice" value="invoiceThisMonthTwo" lay-filter="invoiceYear" id="invoiceThisMonthTwo" title="本月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0008')"></a>
|
|
|
+ <input type="radio" name="invoice" value="invoiceYearTwo" lay-filter="invoiceYear" id="invoiceYearTwo" title="当年"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0009')"></a>
|
|
|
</div>
|
|
|
</c:if>
|
|
|
</h2></div>
|
|
@@ -1187,9 +1212,9 @@
|
|
|
<div class="form-group-label"><h2>报销${nyr}报
|
|
|
<c:if test="${nyr eq '月'}">
|
|
|
<div class="layui-input-block" style="float: right;height: 17.9px;bottom: 10px;">
|
|
|
- <input type="radio" name="reimbursement" value="reimbursementMonthOne" lay-filter="reimbursementMonth" id="reimbursementMonthOne" checked title="当月">
|
|
|
- <input type="radio" name="reimbursement" value="reimbursementThisMonthOne" lay-filter="reimbursementMonth" id="reimbursementThisMonthOne" title="本月">
|
|
|
- <input type="radio" name="reimbursement" value="reimbursementYearOne" lay-filter="reimbursementMonth" id="reimbursementYearOne" title="当年">
|
|
|
+ <input type="radio" name="reimbursement" value="reimbursementMonthOne" lay-filter="reimbursementMonth" id="reimbursementMonthOne" checked title="当月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0007')"></a>
|
|
|
+ <input type="radio" name="reimbursement" value="reimbursementThisMonthOne" lay-filter="reimbursementMonth" id="reimbursementThisMonthOne" title="本月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0008')"></a>
|
|
|
+ <input type="radio" name="reimbursement" value="reimbursementYearOne" lay-filter="reimbursementMonth" id="reimbursementYearOne" title="当年"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0009')"></a>
|
|
|
</div>
|
|
|
</c:if>
|
|
|
</h2></div>
|
|
@@ -1201,9 +1226,9 @@
|
|
|
<div class="form-group-label"><h2>本月报销月报
|
|
|
<c:if test="${nyr eq '月'}">
|
|
|
<div class="layui-input-block" style="float: right;height: 17.9px;bottom: 10px;">
|
|
|
- <input type="radio" name="reimbursement" value="reimbursementMonthThird" lay-filter="reimbursementThisMonth" id="reimbursementMonthThird" title="当月">
|
|
|
- <input type="radio" name="reimbursement" value="reimbursementThisMonthThird" lay-filter="reimbursementThisMonth" id="reimbursementThisMonthThird" title="本月">
|
|
|
- <input type="radio" name="reimbursement" value="reimbursementYearThird" lay-filter="reimbursementThisMonth" id="reimbursementYearThird" title="当年">
|
|
|
+ <input type="radio" name="reimbursement" value="reimbursementMonthThird" lay-filter="reimbursementThisMonth" id="reimbursementMonthThird" title="当月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0007')"></a>
|
|
|
+ <input type="radio" name="reimbursement" value="reimbursementThisMonthThird" lay-filter="reimbursementThisMonth" id="reimbursementThisMonthThird" title="本月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0008')"></a>
|
|
|
+ <input type="radio" name="reimbursement" value="reimbursementYearThird" lay-filter="reimbursementThisMonth" id="reimbursementYearThird" title="当年"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0009')"></a>
|
|
|
</div>
|
|
|
</c:if>
|
|
|
</h2></div>
|
|
@@ -1215,9 +1240,9 @@
|
|
|
<div class="form-group-label"><h2>报销年报
|
|
|
<c:if test="${nyr eq '月'}">
|
|
|
<div class="layui-input-block" style="float: right;height: 17.9px;bottom: 10px;">
|
|
|
- <input type="radio" name="reimbursement" value="reimbursementMonthTwo" lay-filter="reimbursementYear" id="reimbursementMonthTwo" title="当月">
|
|
|
- <input type="radio" name="reimbursement" value="reimbursementThisMonthTwo" lay-filter="reimbursementYear" id="reimbursementThisMonthTwo" title="本月">
|
|
|
- <input type="radio" name="reimbursement" value="reimbursementYearTwo" lay-filter="reimbursementYear" id="reimbursementYearTwo" title="当年">
|
|
|
+ <input type="radio" name="reimbursement" value="reimbursementMonthTwo" lay-filter="reimbursementYear" id="reimbursementMonthTwo" title="当月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0007')"></a>
|
|
|
+ <input type="radio" name="reimbursement" value="reimbursementThisMonthTwo" lay-filter="reimbursementYear" id="reimbursementThisMonthTwo" title="本月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0008')"></a>
|
|
|
+ <input type="radio" name="reimbursement" value="reimbursementYearTwo" lay-filter="reimbursementYear" id="reimbursementYearTwo" title="当年"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0009')"></a>
|
|
|
</div>
|
|
|
</c:if>
|
|
|
</h2></div>
|
|
@@ -1229,9 +1254,9 @@
|
|
|
<div class="form-group-label"><h2>合同${nyr}报
|
|
|
<c:if test="${nyr eq '月'}">
|
|
|
<div class="layui-input-block" style="float: right;height: 17.9px;bottom: 10px;">
|
|
|
- <input type="radio" name="contract" value="contractMonthOne" lay-filter="contractMonth" id="contractMonthOne" checked title="当月">
|
|
|
- <input type="radio" name="contract" value="contractThisMonthOne" lay-filter="contractMonth" id="contractThisMonthOne" title="本月">
|
|
|
- <input type="radio" name="contract" value="contractYearOne" lay-filter="contractMonth" id="contractYearOne" title="当年">
|
|
|
+ <input type="radio" name="contract" value="contractMonthOne" lay-filter="contractMonth" id="contractMonthOne" checked title="当月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0007')"></a>
|
|
|
+ <input type="radio" name="contract" value="contractThisMonthOne" lay-filter="contractMonth" id="contractThisMonthOne" title="本月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0008')"></a>
|
|
|
+ <input type="radio" name="contract" value="contractYearOne" lay-filter="contractMonth" id="contractYearOne" title="当年"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0009')"></a>
|
|
|
</div>
|
|
|
</c:if>
|
|
|
</h2></div>
|
|
@@ -1243,9 +1268,9 @@
|
|
|
<div class="form-group-label"><h2>本月合同月报
|
|
|
<c:if test="${nyr eq '月'}">
|
|
|
<div class="layui-input-block" style="float: right;height: 17.9px;bottom: 10px;">
|
|
|
- <input type="radio" name="contract" value="contractMonthThird" lay-filter="contractThisMonth" id="contractMonthThird" title="当月">
|
|
|
- <input type="radio" name="contract" value="contractThisMonthThird" lay-filter="contractThisMonth" id="contractThisMonthThird" title="本月">
|
|
|
- <input type="radio" name="contract" value="contractYearThird" lay-filter="contractThisMonth" id="contractYearThird" title="当年">
|
|
|
+ <input type="radio" name="contract" value="contractMonthThird" lay-filter="contractThisMonth" id="contractMonthThird" title="当月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0007')"></a>
|
|
|
+ <input type="radio" name="contract" value="contractThisMonthThird" lay-filter="contractThisMonth" id="contractThisMonthThird" title="本月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0008')"></a>
|
|
|
+ <input type="radio" name="contract" value="contractYearThird" lay-filter="contractThisMonth" id="contractYearThird" title="当年"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0009')"></a>
|
|
|
</div>
|
|
|
</c:if>
|
|
|
</h2></div>
|
|
@@ -1257,9 +1282,9 @@
|
|
|
<div class="form-group-label"><h2>合同年报
|
|
|
<c:if test="${nyr eq '月'}">
|
|
|
<div class="layui-input-block" style="float: right;height: 17.9px;bottom: 10px;">
|
|
|
- <input type="radio" name="contract" value="contractMonthTwo" lay-filter="contractYear" id="contractMonthTwo" title="当月">
|
|
|
- <input type="radio" name="contract" value="contractThisMonthTwo" lay-filter="contractYear" id="contractThisMonthTwo" title="本月">
|
|
|
- <input type="radio" name="contract" value="contractYearTwo" lay-filter="contractYear" id="contractYearTwo" title="当年">
|
|
|
+ <input type="radio" name="contract" value="contractMonthTwo" lay-filter="contractYear" id="contractMonthTwo" title="当月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0007')"></a>
|
|
|
+ <input type="radio" name="contract" value="contractThisMonthTwo" lay-filter="contractYear" id="contractThisMonthTwo" title="本月"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0008')"></a>
|
|
|
+ <input type="radio" name="contract" value="contractYearTwo" lay-filter="contractYear" id="contractYearTwo" title="当年"><a href="#" style="margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;" class="layui-icon layui-icon-tips" onclick="helpDetails('bz-0009')"></a>
|
|
|
</div>
|
|
|
</c:if>
|
|
|
</h2></div>
|
|
@@ -1331,28 +1356,28 @@
|
|
|
if("" != d.statementDate){
|
|
|
return "<a class=\"attention-info\" title=\"" + d.field1 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('新增A类', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=" + d.bigDateType +"&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&grade=2&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field1 + "</a>";
|
|
|
}else{
|
|
|
- return "<span title='"+ d.field1 +"'>" +d.field1+ "</span>";
|
|
|
+ return "<a style=\"font-weight: bold\" class=\"attention-info\" title=\"" + d.field1 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('新增A类', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=${bigDateType}&smallDateType=${smallDateType}&year=${year}&grade=2&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field1 + "</a>";
|
|
|
}
|
|
|
}}
|
|
|
,{field:'field2',align:'center', title: '新增B类',rowspan:2,templet:function(d){
|
|
|
if("" != d.statementDate){
|
|
|
return "<a class=\"attention-info\" title=\"" + d.field2 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('新增B类', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=" + d.bigDateType +"&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&grade=1&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field2 + "</a>";
|
|
|
}else{
|
|
|
- return "<span title='"+ d.field2 +"'>" +d.field2+ "</span>";
|
|
|
+ return "<a style=\"font-weight: bold\" class=\"attention-info\" title=\"" + d.field2 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('新增B类', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=${bigDateType}&smallDateType=${smallDateType}&year=${year}&grade=1&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field2 + "</a>";
|
|
|
}
|
|
|
}}
|
|
|
,{field:'field3',align:'center', title: '本${nyr}电子归档',rowspan:2,templet:function(d){
|
|
|
if("" != d.statementDate){
|
|
|
return "<a class=\"attention-info\" title=\"" + d.field3 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('本${nyr}电子归档', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=" + d.bigDateType +"&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&recordState=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field3 + "</a>";
|
|
|
}else{
|
|
|
- return "<span title='"+ d.field3 +"'>" +d.field3+ "</span>";
|
|
|
+ return "<a style=\"font-weight: bold\" class=\"attention-info\" title=\"" + d.field3 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('本${nyr}电子归档', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=${bigDateType}&smallDateType=${smallDateType}&year=${year}&recordState=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field3 + "</a>";
|
|
|
}
|
|
|
}}
|
|
|
,{field:'field4',align:'center', title: '本${nyr}上报',rowspan:2,templet:function(d){
|
|
|
if("" != d.statementDate){
|
|
|
return "<a class=\"attention-info\" title=\"" + d.field4 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('本${nyr}上报', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=" + d.bigDateType +"&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&reportedState=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field4 + "</a>";
|
|
|
}else{
|
|
|
- return "<span title='"+ d.field4 +"'>" +d.field4+ "</span>";
|
|
|
+ return "<a style=\"font-weight: bold\" class=\"attention-info\" title=\"" + d.field4 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('本${nyr}上报', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=${bigDateType}&smallDateType=${smallDateType}&year=${year}&reportedState=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field4 + "</a>";
|
|
|
}
|
|
|
}}
|
|
|
,{align:'center', title: '电子超期未归档',colspan: 2}
|
|
@@ -1367,14 +1392,14 @@
|
|
|
if("" != d.statementDate){
|
|
|
return "<a class=\"attention-info\" title=\"" + d.field5 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期未归档', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=" + d.bigDateType +"&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&field5=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field5 + "</a>";
|
|
|
}else{
|
|
|
- return "<span title='"+ d.field5 +"'>" +d.field5+ "</span>";
|
|
|
+ return "<a style=\"font-weight: bold\" class=\"attention-info\" title=\"" + d.field5 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期未归档', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=${bigDateType}&smallDateType=${smallDateType}&year=${year}&field5=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field5 + "</a>";
|
|
|
}
|
|
|
}}
|
|
|
,{field:'field6',align:'center',title:'超期已归档',templet:function(d){
|
|
|
if("" != d.statementDate){
|
|
|
return "<a class=\"attention-info\" title=\"" + d.field6 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期已归档', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=" + d.bigDateType +"&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&field6=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field6 + "</a>";
|
|
|
}else{
|
|
|
- return "<span title='"+ d.field6 +"'>" +d.field6+ "</span>";
|
|
|
+ return "<a style=\"font-weight: bold\" class=\"attention-info\" title=\"" + d.field6 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期已归档', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=${bigDateType}&smallDateType=${smallDateType}&year=${year}&field6=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field6 + "</a>";
|
|
|
}
|
|
|
}}
|
|
|
|
|
@@ -1382,14 +1407,14 @@
|
|
|
if("" != d.statementDate){
|
|
|
return "<a class=\"attention-info\" title=\"" + d.field13 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期未归档', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=" + d.bigDateType +"&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&field13=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field13 + "</a>";
|
|
|
}else{
|
|
|
- return "<span title='"+ d.field13 +"'>" +d.field13+ "</span>";
|
|
|
+ return "<a style=\"font-weight: bold\" class=\"attention-info\" title=\"" + d.field13 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期未归档', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=${bigDateType}&smallDateType=${smallDateType}&year=${year}&field13=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field13 + "</a>";
|
|
|
}
|
|
|
}}
|
|
|
,{field:'field14',align:'center',title:'超期已归档',templet:function(d){
|
|
|
if("" != d.statementDate){
|
|
|
return "<a class=\"attention-info\" title=\"" + d.field14 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期已归档', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=" + d.bigDateType +"&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&field14=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field14 + "</a>";
|
|
|
}else{
|
|
|
- return "<span title='"+ d.field14 +"'>" +d.field14+ "</span>";
|
|
|
+ return "<a style=\"font-weight: bold\" class=\"attention-info\" title=\"" + d.field14 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期已归档', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=${bigDateType}&smallDateType=${smallDateType}&year=${year}&field14=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field14 + "</a>";
|
|
|
}
|
|
|
}}
|
|
|
<c:if test="${nyr eq '季'}">
|
|
@@ -1413,14 +1438,14 @@
|
|
|
if("" != d.statementDate){
|
|
|
return "<a class=\"attention-info\" title=\"" + d.field7 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期未上报', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=" + d.bigDateType +"&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&field7=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field7 + "</a>";
|
|
|
}else{
|
|
|
- return "<span title='"+ d.field7 +"'>" +d.field7+ "</span>";
|
|
|
+ return "<a style=\"font-weight: bold\" class=\"attention-info\" title=\"" + d.field7 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期未上报', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=${bigDateType}&smallDateType=${smallDateType}&year=${year}&field7=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field7 + "</a>";
|
|
|
}
|
|
|
}}
|
|
|
,{field:'field8',align:'center',title:'超期已上报',templet:function(d){
|
|
|
if("" != d.statementDate){
|
|
|
return "<a class=\"attention-info\" title=\"" + d.field8 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期已上报', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=" + d.bigDateType +"&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&field8=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field8 + "</a>";
|
|
|
}else{
|
|
|
- return "<span title='"+ d.field8 +"'>" +d.field8+ "</span>";
|
|
|
+ return "<a style=\"font-weight: bold\" class=\"attention-info\" title=\"" + d.field8 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期已上报', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=${bigDateType}&smallDateType=${smallDateType}&year=${year}&field8=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field8 + "</a>";
|
|
|
}
|
|
|
}}
|
|
|
]]
|
|
@@ -1655,14 +1680,14 @@
|
|
|
[
|
|
|
{field:'field5',align:'center',title:'超期未归档',templet:function(d){
|
|
|
if("" != d.statementDate){
|
|
|
- return "<a class=\"attention-info\" title=\"" + d.field5 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期未归档', '${ctx}/statement/StatementCompanyComprehensive/projectReportListByYear?bigDateType=" + d.bigDateType +"&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&field5=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field5 + "</a>";
|
|
|
+ return "<a class=\"attention-info\" title=\"" + d.field5 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期未归档', '${ctx}/statement/StatementCompanyComprehensive/projectReportListByYear?bigDateType=0&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&field5=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field5 + "</a>";
|
|
|
}else{
|
|
|
return "<span title='"+ d.field5 +"'>" +d.field5+ "</span>";
|
|
|
}
|
|
|
}}
|
|
|
,{field:'field6',align:'center',title:'超期已归档',templet:function(d){
|
|
|
if("" != d.statementDate){
|
|
|
- return "<a class=\"attention-info\" title=\"" + d.field6 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期已归档', '${ctx}/statement/StatementCompanyComprehensive/projectReportListByYear?bigDateType=" + d.bigDateType +"&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&field6=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field6 + "</a>";
|
|
|
+ return "<a class=\"attention-info\" title=\"" + d.field6 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期已归档', '${ctx}/statement/StatementCompanyComprehensive/projectReportListByYear?bigDateType=0&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&field6=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field6 + "</a>";
|
|
|
}else{
|
|
|
return "<span title='"+ d.field6 +"'>" +d.field6+ "</span>";
|
|
|
}
|
|
@@ -1670,14 +1695,14 @@
|
|
|
|
|
|
,{field:'field13',align:'center',title:'超期未归档',templet:function(d){
|
|
|
if("" != d.statementDate){
|
|
|
- return "<a class=\"attention-info\" title=\"" + d.field13 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期未归档', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=" + d.bigDateType +"&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&field13=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field13 + "</a>";
|
|
|
+ return "<a class=\"attention-info\" title=\"" + d.field13 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期未归档', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=0&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&field13=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field13 + "</a>";
|
|
|
}else{
|
|
|
return "<span title='"+ d.field13 +"'>" +d.field13+ "</span>";
|
|
|
}
|
|
|
}}
|
|
|
,{field:'field14',align:'center',title:'超期已归档',templet:function(d){
|
|
|
if("" != d.statementDate){
|
|
|
- return "<a class=\"attention-info\" title=\"" + d.field14 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期已归档', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=" + d.bigDateType +"&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&field14=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field14 + "</a>";
|
|
|
+ return "<a class=\"attention-info\" title=\"" + d.field14 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期已归档', '${ctx}/statement/StatementCompanyComprehensive/projectReportList?bigDateType=0&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&field14=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field14 + "</a>";
|
|
|
}else{
|
|
|
return "<span title='"+ d.field14 +"'>" +d.field14+ "</span>";
|
|
|
}
|
|
@@ -1685,14 +1710,14 @@
|
|
|
|
|
|
,{field:'field7',align:'center',title:'超期未上报',templet:function(d){
|
|
|
if("" != d.statementDate){
|
|
|
- return "<a class=\"attention-info\" title=\"" + d.field7 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期未上报', '${ctx}/statement/StatementCompanyComprehensive/projectReportListByYear?bigDateType=" + d.bigDateType +"&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&field7=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field7 + "</a>";
|
|
|
+ return "<a class=\"attention-info\" title=\"" + d.field7 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期未上报', '${ctx}/statement/StatementCompanyComprehensive/projectReportListByYear?bigDateType=0&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&field7=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field7 + "</a>";
|
|
|
}else{
|
|
|
return "<span title='"+ d.field7 +"'>" +d.field7+ "</span>";
|
|
|
}
|
|
|
}}
|
|
|
,{field:'field8',align:'center',title:'超期已上报',templet:function(d){
|
|
|
if("" != d.statementDate){
|
|
|
- return "<a class=\"attention-info\" title=\"" + d.field8 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期已上报', '${ctx}/statement/StatementCompanyComprehensive/projectReportListByYear?bigDateType=" + d.bigDateType +"&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&field8=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field8 + "</a>";
|
|
|
+ return "<a class=\"attention-info\" title=\"" + d.field8 + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('超期已上报', '${ctx}/statement/StatementCompanyComprehensive/projectReportListByYear?bigDateType=0&smallDateType=" + d.smallDateType +"&officeId="+d.officeId+"&year="+d.year+"&field8=5&isThisMonth=${isThisMonth}','95%', '95%')\">" + d.field8 + "</a>";
|
|
|
}else{
|
|
|
return "<span title='"+ d.field8 +"'>" +d.field8+ "</span>";
|
|
|
}
|