|
@@ -0,0 +1,592 @@
|
|
|
|
+<%@ page contentType="text/html;charset=UTF-8" %>
|
|
|
|
+<%@ include file="/webpage/include/taglib.jsp"%>
|
|
|
|
+<html>
|
|
|
|
+<head>
|
|
|
|
+ <title>材料库</title>
|
|
|
|
+ <meta name="decorator" content="default"/>
|
|
|
|
+ <script type="text/javascript" src="${ctxStatic}/layui/layuidown.js"></script>
|
|
|
|
+ <link rel='stylesheet' type="text/css" href="${ctxStatic}/layui/layuidown.css"/>
|
|
|
|
+ <%--<script src="${ctxStatic}/layer-v2.3/laydate/laydate.js"></script>--%>
|
|
|
|
+ <script type="text/javascript">
|
|
|
|
+ $(document).ready(function() {
|
|
|
|
+ layui.use(['dropdown', 'util', 'layer'], function () {
|
|
|
|
+ var form = layui.form;
|
|
|
|
+ $.ajax({
|
|
|
|
+ type : "POST",
|
|
|
|
+ url : "${ctx}/ruralProject/ruralProjectRecords/engineeringTreeMenu",
|
|
|
|
+ //请求成功
|
|
|
|
+ success : function(result) {
|
|
|
|
+ var str=jQuery.parseJSON(result);
|
|
|
|
+ //工程类型树形菜单
|
|
|
|
+ layui.dropdown.render({
|
|
|
|
+ elem: '#demo100'
|
|
|
|
+ ,style: 'width: 320px;'
|
|
|
|
+ ,data:str
|
|
|
|
+ ,click: function(item){
|
|
|
|
+ $("#demo100").val(item.title)
|
|
|
|
+ $("#demo101").val(item.id)
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ })
|
|
|
|
+ //搜索框收放
|
|
|
|
+ $('#moresee').click(function(){
|
|
|
|
+ if($('#moresees').is(':visible'))
|
|
|
|
+ {
|
|
|
|
+ $('#moresees').slideUp(0,resizeListWindow2);
|
|
|
|
+ $('#moresee i').removeClass("glyphicon glyphicon-menu-up").addClass("glyphicon glyphicon-menu-down");
|
|
|
|
+ }else{
|
|
|
|
+ $('#moresees').slideDown(0,resizeListWindow2);
|
|
|
|
+ $('#moresee i').removeClass("glyphicon glyphicon-menu-down").addClass("glyphicon glyphicon-menu-up");
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ laydate.render({
|
|
|
|
+ elem: '#beginDate', //目标元素。由于laydate.js封装了一个轻量级的选择器引擎,因此elem还允许你传入class、tag但必须按照这种方式 '#id .class'
|
|
|
|
+ event: 'focus', //响应事件。如果没有传入event,则按照默认的click
|
|
|
|
+ type : 'date'
|
|
|
|
+, trigger: 'click'
|
|
|
|
+ });
|
|
|
|
+ laydate.render({
|
|
|
|
+ elem: '#endDate', //目标元素。由于laydate.js封装了一个轻量级的选择器引擎,因此elem还允许你传入class、tag但必须按照这种方式 '#id .class'
|
|
|
|
+ event: 'focus', //响应事件。如果没有传入event,则按照默认的click
|
|
|
|
+ type : 'date'
|
|
|
|
+, trigger: 'click'
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ function reset() {
|
|
|
|
+ $("#searchForm").resetForm();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ function openDialog(title,url,width,height,target) {
|
|
|
|
+
|
|
|
|
+ if (navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) {//如果是移动端,就使用自适应大小弹窗
|
|
|
|
+ width = 'auto';
|
|
|
|
+ height = 'auto';
|
|
|
|
+ } else {//如果是PC端,根据用户设置的width和height显示。
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ top.layer.open({
|
|
|
|
+ type: 2,
|
|
|
|
+ area: [width, height],
|
|
|
|
+ title: title,
|
|
|
|
+ maxmin: true, //开启最大化最小化按钮
|
|
|
|
+ content: url,
|
|
|
|
+ skin: 'three-btns',
|
|
|
|
+ btn: ['提交', '关闭'],
|
|
|
|
+ /*yes: function (index, layero) {
|
|
|
|
+ var body = top.layer.getChildFrame('body', index);
|
|
|
|
+ var iframeWin = layero.find('iframe')[0]; //得到iframe页的窗口对象,执行iframe页的方法:iframeWin.method();
|
|
|
|
+ var inputForm = body.find('#inputForm');
|
|
|
|
+ var top_iframe;
|
|
|
|
+ if (target) {
|
|
|
|
+ top_iframe = target;//如果指定了iframe,则在改frame中跳转
|
|
|
|
+ } else {
|
|
|
|
+ top_iframe = top.getActiveTab().attr("name");//获取当前active的tab的iframe
|
|
|
|
+ }
|
|
|
|
+ inputForm.attr("target", top_iframe);//表单提交成功后,从服务器返回的url在当前tab中展示
|
|
|
|
+
|
|
|
|
+ if (iframeWin.contentWindow.doSubmit()) {
|
|
|
|
+ // top.layer.close(index);//关闭对话框。
|
|
|
|
+ setTimeout(function () {
|
|
|
|
+ top.layer.close(index)
|
|
|
|
+ }, 100);//延时0.1秒,对应360 7.1版本bug
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ },*/
|
|
|
|
+ btn1: function(index, layero){
|
|
|
|
+ var body = top.layer.getChildFrame('body', index);
|
|
|
|
+ var iframeWin = layero.find('iframe')[0]; //得到iframe页的窗口对象,执行iframe页的方法:iframeWin.method();
|
|
|
|
+ var inputForm = body.find('#inputForm');
|
|
|
|
+ var top_iframe;
|
|
|
|
+ if(target){
|
|
|
|
+ top_iframe = target;//如果指定了iframe,则在改frame中跳转
|
|
|
|
+ }else{
|
|
|
|
+ top_iframe = top.getActiveTab().attr("name");//获取当前active的tab的iframe
|
|
|
|
+ }
|
|
|
|
+ inputForm.attr("target",top_iframe);//表单提交成功后,从服务器返回的url在当前tab中展示
|
|
|
|
+ if(iframeWin.contentWindow.doSubmit(1) ){
|
|
|
|
+ // top.layer.close(index);//关闭对话框。
|
|
|
|
+ setTimeout(function(){top.layer.close(index)}, 100);//延时0.1秒,对应360 7.1版本bug
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ btn2: function (index) {
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ //打开对话框(查看)
|
|
|
|
+ function openDialogReportView(title,url,id,width,height){
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ if(navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)){//如果是移动端,就使用自适应大小弹窗
|
|
|
|
+ width='auto';
|
|
|
|
+ height='auto';
|
|
|
|
+ }else{//如果是PC端,根据用户设置的width和height显示。
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ $.ajax({
|
|
|
|
+ async: false,
|
|
|
|
+ url: "${ctx}/ruralProject/ruralProjectMessage/getReportExist?id="+id,
|
|
|
|
+ dataType: "json",
|
|
|
|
+ success: function (data) {
|
|
|
|
+ if(data.success){
|
|
|
|
+ top.layer.open({
|
|
|
|
+ type: 2,
|
|
|
|
+ skin: 'one-btn',
|
|
|
|
+ area: [width, height],
|
|
|
|
+ title: title,
|
|
|
|
+ maxmin: true, //开启最大化最小化按钮
|
|
|
|
+ content: url ,
|
|
|
|
+ btn: ['关闭'],
|
|
|
|
+ cancel: function(index){
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }else{
|
|
|
|
+ top.layer.msg("该项目报告信息已删除!", {icon: 0});
|
|
|
|
+ window.location.reload();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ function openDialogre(title,url,width,height,target,buttons) {
|
|
|
|
+
|
|
|
|
+ if (navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) {//如果是移动端,就使用自适应大小弹窗
|
|
|
|
+ width = 'auto';
|
|
|
|
+ height = 'auto';
|
|
|
|
+ } else {//如果是PC端,根据用户设置的width和height显示。
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ var split = buttons.split(",");
|
|
|
|
+ top.layer.open({
|
|
|
|
+ type: 2,
|
|
|
|
+ area: [width, height],
|
|
|
|
+ title: title,
|
|
|
|
+ maxmin: true, //开启最大化最小化按钮
|
|
|
|
+ skin: 'three-btns',
|
|
|
|
+ content: url,
|
|
|
|
+ btn: split,
|
|
|
|
+ btn1: function(index, layero){
|
|
|
|
+ var body = top.layer.getChildFrame('body', index);
|
|
|
|
+ var iframeWin = layero.find('iframe')[0]; //得到iframe页的窗口对象,执行iframe页的方法:iframeWin.method();
|
|
|
|
+ var inputForm = body.find('#inputForm');
|
|
|
|
+ var top_iframe;
|
|
|
|
+ if(target){
|
|
|
|
+ top_iframe = target;//如果指定了iframe,则在改frame中跳转
|
|
|
|
+ }else{
|
|
|
|
+ top_iframe = top.getActiveTab().attr("name");//获取当前active的tab的iframe
|
|
|
|
+ }
|
|
|
|
+ inputForm.attr("target",top_iframe);//表单提交成功后,从服务器返回的url在当前tab中展示
|
|
|
|
+ if(iframeWin.contentWindow.doSubmit(1) ){
|
|
|
|
+ // top.layer.close(index);//关闭对话框。
|
|
|
|
+ setTimeout(function(){top.layer.close(index)}, 100);//延时0.1秒,对应360 7.1版本bug
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ btn2:function(index,layero){
|
|
|
|
+ if(split.length==2){return}
|
|
|
|
+ var body = top.layer.getChildFrame('body', index);
|
|
|
|
+ var iframeWin = layero.find('iframe')[0]; //得到iframe页的窗口对象,执行iframe页的方法:iframeWin.method();
|
|
|
|
+ var inputForm = body.find('#inputForm');
|
|
|
|
+ var top_iframe;
|
|
|
|
+ if(target){
|
|
|
|
+ top_iframe = target;//如果指定了iframe,则在改frame中跳转
|
|
|
|
+ }else{
|
|
|
|
+ top_iframe = top.getActiveTab().attr("name");//获取当前active的tab的iframe
|
|
|
|
+ }
|
|
|
|
+ inputForm.attr("target",top_iframe);//表单提交成功后,从服务器返回的url在当前tab中展示
|
|
|
|
+ if(iframeWin.contentWindow.doSubmit(2) ){
|
|
|
|
+ // top.layer.close(index);//关闭对话框。
|
|
|
|
+ setTimeout(function(){top.layer.close(index)}, 100);//延时0.1秒,对应360 7.1版本bug
|
|
|
|
+ }else {
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ btn3: function (index) {
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ </script>
|
|
|
|
+ <style>
|
|
|
|
+ body{
|
|
|
|
+ background-color:transparent;
|
|
|
|
+ filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#26FFFFFF, endColorstr=#26FFFFFF);
|
|
|
|
+ color:#ffffff;
|
|
|
|
+ background-color:rgba(255,255,255,0);
|
|
|
|
+ height:100%;
|
|
|
|
+ }
|
|
|
|
+ </style>
|
|
|
|
+ <script>
|
|
|
|
+
|
|
|
|
+ function notifyDialogre(title,url,width,height,target){
|
|
|
|
+ if(navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)){//如果是移动端,就使用自适应大小弹窗
|
|
|
|
+ width='auto';
|
|
|
|
+ height='auto';
|
|
|
|
+ }else{//如果是PC端,根据用户设置的width和height显示。
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ top.layer.open({
|
|
|
|
+ type: 2,
|
|
|
|
+ area: [width, height],
|
|
|
|
+ title: title,
|
|
|
|
+ skin:"three-btns",
|
|
|
|
+ maxmin: true, //开启最大化最小化按钮
|
|
|
|
+ content: url ,
|
|
|
|
+ btn: ['通过','驳回','关闭'],
|
|
|
|
+ btn1: function(index, layero){
|
|
|
|
+ var body = top.layer.getChildFrame('body', index);
|
|
|
|
+ var iframeWin = layero.find('iframe')[0]; //得到iframe页的窗口对象,执行iframe页的方法:iframeWin.method();
|
|
|
|
+ var inputForm = body.find('#inputForm');
|
|
|
|
+ var top_iframe;
|
|
|
|
+ if(target){
|
|
|
|
+ top_iframe = target;//如果指定了iframe,则在改frame中跳转
|
|
|
|
+ }else{
|
|
|
|
+ top_iframe = top.getActiveTab().attr("name");//获取当前active的tab的iframe
|
|
|
|
+ }
|
|
|
|
+ inputForm.attr("target",top_iframe);//表单提交成功后,从服务器返回的url在当前tab中展示
|
|
|
|
+ if(iframeWin.contentWindow.doSubmit(1) ){
|
|
|
|
+ top.layer.close(index);//关闭对话框。
|
|
|
|
+ setTimeout(function(){top.layer.close(index)}, 100);//延时0.1秒,对应360 7.1版本bug
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ btn2:function(index,layero){
|
|
|
|
+ var body = top.layer.getChildFrame('body', index);
|
|
|
|
+ var iframeWin = layero.find('iframe')[0]; //得到iframe页的窗口对象,执行iframe页的方法:iframeWin.method();
|
|
|
|
+ var inputForm = body.find('#inputForm');
|
|
|
|
+ var top_iframe;
|
|
|
|
+ if(target){
|
|
|
|
+ top_iframe = target;//如果指定了iframe,则在改frame中跳转
|
|
|
|
+ }else{
|
|
|
|
+ top_iframe = top.getActiveTab().attr("name");//获取当前active的tab的iframe
|
|
|
|
+ }
|
|
|
|
+ inputForm.attr("target",top_iframe);//表单提交成功后,从服务器返回的url在当前tab中展示
|
|
|
|
+ if(iframeWin.contentWindow.doSubmit(2) ){
|
|
|
|
+ top.layer.close(index);//关闭对话框。
|
|
|
|
+ setTimeout(function(){top.layer.close(index)}, 100);//延时0.1秒,对应360 7.1版本bug
|
|
|
|
+ }
|
|
|
|
+ return false;
|
|
|
|
+ },
|
|
|
|
+ btn3: function(index){
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ </script>
|
|
|
|
+</head>
|
|
|
|
+<body>
|
|
|
|
+<div class="wrapper wrapper-content">
|
|
|
|
+ <sys:message content="${message}"/>
|
|
|
|
+ <div class="layui-row">
|
|
|
|
+ <div class="full-width fl">
|
|
|
|
+ <%--<div class="list-form-tab contentShadow shadowLTR" id="tabDiv">
|
|
|
|
+ <ul class="list-tabs" >
|
|
|
|
+ <li class="active"><a href="${ctx}/ruralProject/ruralProjectRecords/list">项目登记列表</a></li>
|
|
|
|
+ <li><a href="${ctx}/ruralProject/ruralProjectRecordsAlter/list">项目变更列表</a></li>
|
|
|
|
+ </ul>
|
|
|
|
+ </div>--%>
|
|
|
|
+
|
|
|
|
+ <%--<div class="layui-row" id="tabDiv">--%>
|
|
|
|
+ <%--<div class="layui-tab layui-tab-brief" lay-filter="docDemoTabBrief">--%>
|
|
|
|
+ <%--<ul class="layui-tab-title">--%>
|
|
|
|
+ <%--<li class="layui-this"><a href="${ctx}/project/projectRecords/list">项目登记列表</a></li>--%>
|
|
|
|
+ <%--<li><a href="${ctx}/project/projectRecordsAlter/list">项目变更列表</a></li>--%>
|
|
|
|
+ <%--</ul>--%>
|
|
|
|
+ <%--</div>--%>
|
|
|
|
+ <%--</div>--%>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="full-width fl">
|
|
|
|
+ <div class="layui-row contentShadow shadowLR" id="queryDiv">
|
|
|
|
+ <form:form id="searchForm" modelAttribute="projectMaterialStorage" action="${ctx}/project/projectMaterialStorage/" method="post" class="form-inline">
|
|
|
|
+ <input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
|
|
|
|
+ <input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
|
|
|
|
+ <input id="toflag" name="toflag" type="hidden" value="1"/>
|
|
|
|
+ <table:sortColumn id="orderBy" name="orderBy" value="${page.orderBy}" callback="sortOrRefresh();"/><!-- 支持排序 -->
|
|
|
|
+ <div class="commonQuery lw6">
|
|
|
|
+ <div class="layui-item query athird">
|
|
|
|
+ <label class="layui-form-label">项目名称:</label>
|
|
|
|
+ <div class="layui-input-block">
|
|
|
|
+ <form:input path="projectName" htmlEscape="false" maxlength="64" class=" form-control layui-input"/>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="commonQuery lw6">
|
|
|
|
+ <div class="layui-item query athird">
|
|
|
|
+ <label class="layui-form-label">材料名称:</label>
|
|
|
|
+ <div class="layui-input-block">
|
|
|
|
+ <form:input path="materialName" htmlEscape="false" maxlength="64" class=" form-control layui-input"/>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="layui-item athird">
|
|
|
|
+ <div class="input-group">
|
|
|
|
+ <a href="#" id="moresee"><i class="glyphicon glyphicon-menu-down"></i></a>
|
|
|
|
+ <div class="layui-btn-group search-spacing">
|
|
|
|
+ <button id="searchQuery" class="layui-btn layui-btn-sm layui-bg-blue" onclick="search()">查询</button>
|
|
|
|
+ <button id="searchReset" class="layui-btn layui-btn-sm" onclick="resetSearch()">重置</button>
|
|
|
|
+ </div>
|
|
|
|
+<%-- <a href="#" id="moresee"><i class="glyphicon glyphicon-menu-down"></i></a>--%>
|
|
|
|
+<%-- <button id="searchReset" class="fixed-btn searchReset fr" onclick="resetSearch()">重置</button>--%>
|
|
|
|
+<%-- <button id="searchQuery" class="fixed-btn searchQuery fr" onclick="search()">查询</button>--%>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div style=" clear:both;"></div>
|
|
|
|
+ </div>
|
|
|
|
+ <div id="moresees" style="clear:both;display:none;" class="lw6">
|
|
|
|
+ <div class="layui-item query athird">
|
|
|
|
+ <label class="layui-form-label">地点:</label>
|
|
|
|
+ <div class="layui-input-block with-icon">
|
|
|
|
+ <form:input path="areaName" htmlEscape="false" maxlength="64" class=" form-control layui-input"/>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="layui-item query athird ">
|
|
|
|
+ <label class="layui-form-label">创建时间:</label>
|
|
|
|
+ <div class="layui-input-block readOnlyFFF">
|
|
|
|
+ <input id="beginDate" name="beginDate" placeholder="开始时间" type="text" readonly="readonly" maxlength="20" class="laydate-icondate form-control layer-date layui-input laydate-icon query-group"
|
|
|
|
+ value="<fmt:formatDate value="${projectRecords.beginDate}" pattern="yyyy-MM-dd"/>"/>
|
|
|
|
+ </input>
|
|
|
|
+ <span class="group-sep">-</span>
|
|
|
|
+ <input id="endDate" name="endDate" placeholder="结束时间" type="text" readonly="readonly" maxlength="20" class="laydate-icondate form-control layer-date layui-input laydate-icon query-group"
|
|
|
|
+ value="<fmt:formatDate value="${projectRecords.endDate}" pattern="yyyy-MM-dd"/>"/>
|
|
|
|
+ </input>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+<%-- <div class="layui-item query athird ">--%>
|
|
|
|
+<%-- <label class="layui-form-label">状态:</label>--%>
|
|
|
|
+<%-- <div class="layui-input-block">--%>
|
|
|
|
+<%-- <form:select path="projectStatus" class=" form-control simple-select">--%>
|
|
|
|
+<%-- <form:option value="" label=""/>--%>
|
|
|
|
+<%-- <form:options items="${fns:getRuralDictList('rural_project_audit_state')}" itemLabel="label" itemValue="value" htmlEscape="false"/>--%>
|
|
|
|
+<%-- </form:select>--%>
|
|
|
|
+<%-- </div>--%>
|
|
|
|
+<%-- </div>--%>
|
|
|
|
+
|
|
|
|
+ <div style="clear:both;"></div>
|
|
|
|
+ </div>
|
|
|
|
+ </form:form>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="full-width fl">
|
|
|
|
+ <div class="layui-form contentDetails contentShadow shadowLBR">
|
|
|
|
+ <div class="nav-btns">
|
|
|
|
+ <%--此处按钮样式包括 nav-btn-add nav-btn-refresh nav-btn-import nav-btn-export nav-btn-query nav-btn-reset--%>
|
|
|
|
+ <div class="layui-btn-group">
|
|
|
|
+<%-- <shiro:hasPermission name="ruralProject:ruralProjectRecords:add">--%>
|
|
|
|
+<%-- <table:addRow url="${ctx}/ruralProject/ruralProjectRecords/form" title="项目"></table:addRow><!-- 增加按钮 -->--%>
|
|
|
|
+<%-- </shiro:hasPermission>--%>
|
|
|
|
+ <shiro:hasPermission name="ruralProject:ruralProjectRecords:export">
|
|
|
|
+ <table:exportExcel url="${ctx}/ruralProject/ruralProjectRecords/export"></table:exportExcel><!-- 导出按钮 -->
|
|
|
|
+ </shiro:hasPermission>
|
|
|
|
+ <button class="layui-btn layui-btn-sm" data-toggle="tooltip" data-placement="left" onclick="sortOrRefresh()" title="刷新"> 刷新</button>
|
|
|
|
+ </div>
|
|
|
|
+<%-- <shiro:hasPermission name="ruralProject:ruralProjectRecords:add">--%>
|
|
|
|
+<%-- <table:addRow url="${ctx}/ruralProject/ruralProjectRecords/form" title="项目"></table:addRow><!-- 增加按钮 -->--%>
|
|
|
|
+<%-- </shiro:hasPermission>--%>
|
|
|
|
+<%-- <shiro:hasPermission name="ruralProject:ruralProjectRecords:export">--%>
|
|
|
|
+<%-- <table:exportExcel url="${ctx}/ruralProject/ruralProjectRecords/export"></table:exportExcel><!-- 导出按钮 -->--%>
|
|
|
|
+<%-- </shiro:hasPermission>--%>
|
|
|
|
+<%-- <shiro:hasPermission name="ruralProject:ruralProjectRecords:exportAll">--%>
|
|
|
|
+<%-- <button type="button" data-toggle="tooltip" data-placement="top" class="nav-btn nav-btn-delete" id="delUser"><i class="fa fa-file-excel-o"> 批量下载</i></button>--%>
|
|
|
|
+<%-- </shiro:hasPermission>--%>
|
|
|
|
+<%-- <button class="nav-btn nav-btn-refresh" data-toggle="tooltip" data-placement="left" onclick="sortOrRefresh()" title="刷新"><i class="glyphicon glyphicon-repeat"></i> 刷新</button>--%>
|
|
|
|
+ <div style="clear: both;"></div>
|
|
|
|
+ </div>
|
|
|
|
+ <table class="oa-table layui-table" id="contentTable1"></table>
|
|
|
|
+
|
|
|
|
+ <!-- 分页代码 -->
|
|
|
|
+ <table:page page="${page}"></table:page>
|
|
|
|
+ <div style="clear: both;"></div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div id="changewidth"></div>
|
|
|
|
+</div>
|
|
|
|
+
|
|
|
|
+<%--<script src="${ctxStatic}/layer-v2.3/layui/layui.all.js" charset="utf-8"></script>--%>
|
|
|
|
+<script>
|
|
|
|
+
|
|
|
|
+ layui.use('table', function(){
|
|
|
|
+ layui.table.render({
|
|
|
|
+ limit:${ page.pageSize }
|
|
|
|
+ ,id:"checkboxTable"
|
|
|
|
+ ,elem: '#contentTable1'
|
|
|
|
+ ,page: false
|
|
|
|
+ ,cols: [[
|
|
|
|
+ {checkbox: true, fixed: true},
|
|
|
|
+ {field:'index',align:'center', title: '序号',width:55}
|
|
|
|
+ ,{field:'materialName',align:'center', title: '材料名称', width:150}
|
|
|
|
+ ,{field:'price',align:'center', title: '价格', width:150}
|
|
|
|
+ ,{field:'areaName',align:'center', title: '项目地点', width:150}
|
|
|
|
+ ,{field:'projName',align:'center', title: '项目名称',minWidth:200,templet:function(d){
|
|
|
|
+ if(1 == d.showView && d.showView != undefined){
|
|
|
|
+ return "<a class=\"attention-info\" title=\"" + d.projName + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('查看项目', '${ctx}/ruralProject/ruralProjectView/view?id=" + d.id +"','95%', '95%')\">" + d.projName + "</a>";
|
|
|
|
+ }else{
|
|
|
|
+ return "<span title='"+ d.projName +"'>" +d.projName+ "</span>";
|
|
|
|
+ }
|
|
|
|
+ }}
|
|
|
|
+
|
|
|
|
+ /*,{field:'projId',align:'center', title: '项目编号',minWidth:150,templet:function(d){
|
|
|
|
+ return "<a class=\"attention-info\" title=\"" + d.projId + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('查看项目', '${ctx}/ruralProject/ruralProjectRecords/view?id=" + d.id + "','95%', '95%')\">" + d.projId + "</a>";
|
|
|
|
+ }}*/
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ ,{field:'createDate',align:'center', title: '创建日期', width:80}
|
|
|
|
+ ,{field:'op',align:'center',title:"操作",width:240,templet:function(d){
|
|
|
|
+ ////对操作进行初始化
|
|
|
|
+ var xml="<div class=\"layui-btn-group\">";
|
|
|
|
+ if(d.notifyFlag != undefined && d.notifyFlag !=null && "" != d.notifyFlag && d.notifyFlag == 1)
|
|
|
|
+ {
|
|
|
|
+ xml+="<a href=\"#\" onclick=\"notifyDialogre('项目审批', '${ctx}/workprojectnotify/workProjectNotify/form?id=" + d.notifyId +"&home=project','95%', '95%')\" class=\"layui-btn layui-btn-xs layui-bg-green\" > 审批</a>";
|
|
|
|
+ }
|
|
|
|
+ if(d.canedit1 != undefined && d.canedit1 =="1")
|
|
|
|
+ {
|
|
|
|
+ xml+="<a href=\"#\" onclick=\"openDialogre('修改项目', '${ctx}/ruralProject/ruralProjectRecords/form?id=" + d.id +"','95%', '95%','','提交,关闭')\" class=\"layui-btn layui-btn-xs layui-bg-green\" > 修改</a>";
|
|
|
|
+ }
|
|
|
|
+ if(d.canedit2 != undefined && d.canedit2 =="1")
|
|
|
|
+ {
|
|
|
|
+ xml+="<a href=\"#\" onclick=\"openDialogre('调整项目', '${ctx}/ruralProject/ruralProjectRecords/modify?id=" + d.id + "','95%', '95%','','送审,关闭')\" class=\"layui-btn layui-btn-xs layui-bg-green\" > 修改</a>";
|
|
|
|
+ }
|
|
|
|
+ if(d.canrecall != undefined && d.canrecall =="1")
|
|
|
|
+ {
|
|
|
|
+ xml+="<a href=\"#\" onclick=\"openDialogre('调整项目', '${ctx}/ruralProject/ruralProjectRecords/form?id=" + d.id + "','95%', '95%','','提交,关闭')\" class=\"layui-btn layui-btn-xs layui-bg-green\" > 修改</a>";
|
|
|
|
+ }
|
|
|
|
+ if(d.candel != undefined && d.candel =="1")
|
|
|
|
+ {
|
|
|
|
+ xml+="<a href=\"${ctx}/ruralProject/ruralProjectRecords/delete?id=" + d.id + "\" onclick=\"return confirmx('确认要作废该项目信息吗?', this.href)\" class=\"layui-btn layui-btn-xs layui-bg-red\"> 作废</a>";
|
|
|
|
+ }
|
|
|
|
+ if(d.cancancel != undefined && d.cancancel =="1")
|
|
|
|
+ {
|
|
|
|
+ xml+="<a href=\"${ctx}/ruralProject/ruralProjectRecords/revoke?id=" + d.id + "&processInstanceId=" + d.procId + "&projectStatus="+d.projectStatus+"\" onclick=\"return confirmx('确认要撤回该项目审批吗?', this.href)\" class=\"layui-btn layui-btn-xs layui-bg-red\" > 撤回</a>";
|
|
|
|
+ }
|
|
|
|
+ //项目在没有归档完成之前可对文档进行操作
|
|
|
|
+ if(d.recordStatus != undefined && d.recordStatus =="1")
|
|
|
|
+ {
|
|
|
|
+ xml+="<a href=\"#\" onclick=\"openDialogView('文件上传', '${ctx}/ruralProject/ruralProjectRecords/formAccessory?id=" + d.id + "','95%', '95%')\" class=\"layui-btn layui-btn-xs layui-bg-blue\" > 上传文件</a>";
|
|
|
|
+ }
|
|
|
|
+ if(d.reportDataFlag != undefined && d.reportDataFlag =="1")
|
|
|
|
+ {
|
|
|
|
+ xml+="<a href=\"${ctx}/ruralProject/ruralCostProjectRecords/createReportDataId?id=" + d.id + "&projectType=1"+"\" onclick=\"return confirmx('确认要生成报告号吗?', this.href)\" class=\"layui-btn layui-btn-xs layui-bg-orange\"> 生成报告号</a>";
|
|
|
|
+ }
|
|
|
|
+ if(d.canedit3 != undefined && d.canedit3 =="1")
|
|
|
|
+ {
|
|
|
|
+ //xml+="<a href=\"javascript:void(0)\" onclick=\"openDialogre('项目变更管理', '${ctx}/ruralProject/ruralProjectRecordsAlter/form?alterBeforeRecords.id='+encodeURIComponent('" + d.id + "'),'95%','95%','','送审,暂存,关闭')\" style=\"color: white;background: darkseagreen\" class=\"op-btn op-btn-op-btn-revert\" ><i class=\"fa fa-edit\"></i> 变更</a>";
|
|
|
|
+ }
|
|
|
|
+ if(d.deleteAdmin != undefined && d.deleteAdmin =="1")
|
|
|
|
+ {
|
|
|
|
+ xml+="<a href=\"#\" onclick=\"openDialogre('修改项目', '${ctx}/ruralProject/ruralProjectRecords/adminModify?id=" + d.id + "','95%', '95%','','提交,关闭')\" class=\"layui-btn layui-btn-xs layui-bg-green\" > 修改</a>";
|
|
|
|
+ xml+="<a href=\"${ctx}/ruralProject/ruralProjectRecords/adminDelete?id=" + d.id + "\" onclick=\"return confirmx('确认要删除该项目信息吗?', this.href)\" class=\"layui-btn layui-btn-xs layui-bg-red\"> 删除</a>";
|
|
|
|
+ }
|
|
|
|
+ if(d.modifyRecords != undefined && d.modifyRecords =="1")
|
|
|
|
+ {
|
|
|
|
+ xml+="<a href=\"#\" onclick=\"openDialogre('修改项目', '${ctx}/ruralProject/ruralProjectRecords/form?id=" + d.id +"','95%', '95%','','提交,关闭')\" class=\"layui-btn layui-btn-xs layui-bg-green\" > 修改</a>";
|
|
|
|
+ xml+="<a href=\"${ctx}/ruralProject/ruralProjectRecords/delete?id=" + d.id + "\" onclick=\"return confirmx('确认要作废该项目信息吗?', this.href)\" class=\"layui-btn layui-btn-xs layui-bg-red\"> 作废</a>";
|
|
|
|
+ }
|
|
|
|
+ xml+="</div>"
|
|
|
|
+ return xml;
|
|
|
|
+
|
|
|
|
+ }}
|
|
|
|
+ ]]
|
|
|
|
+ ,data: [
|
|
|
|
+ <c:if test="${ not empty page.list}">
|
|
|
|
+ <c:forEach items="${page.list}" var="projectMaterialStorage" varStatus="index">
|
|
|
|
+ <c:if test="${index.index != 0}">,</c:if>
|
|
|
|
+ {
|
|
|
|
+ "index":"${index.index+1}"
|
|
|
|
+ ,"id":"${projectMaterialStorage.id}"
|
|
|
|
+ ,"materialName":"${projectMaterialStorage.materialName}"
|
|
|
|
+ ,"price":"${projectMaterialStorage.price}"
|
|
|
|
+ ,"projName":"<c:out value="${projectMaterialStorage.projectName}" escapeXml="true"/>"
|
|
|
|
+ ,"areaName":"${projectMaterialStorage.areaName}"
|
|
|
|
+ ,"createDate":"<fmt:formatDate value="${projectMaterialStorage.createDate}" pattern="yyyy-MM-dd"/>"
|
|
|
|
+ <c:choose><c:when test="${flag == '1' or fns:getUser().id == projectRecords.createBy.id}">
|
|
|
|
+ <shiro:hasPermission name="ruralProject:ruralProjectRecords:del">,"candel": <c:choose><c:when test="${(projectRecords.projectStatus == 1 or projectRecords.projectStatus == 3 or projectRecords.projectStatus == 4) && fns:getUser().id == projectRecords.createBy.id}">"1"</c:when><c:otherwise>"0"</c:otherwise></c:choose></shiro:hasPermission>
|
|
|
|
+ <shiro:hasPermission name="ruralProject:ruralProjectRecords:edit">,"canedit1": <c:choose><c:when test="${projectRecords.projectStatus == 1 && fns:getUser().id == projectRecords.createBy.id}">"1"</c:when><c:otherwise>"0"</c:otherwise></c:choose>
|
|
|
|
+ ,"canedit2":<c:choose><c:when test="${projectRecords.projectStatus == 4 && fns:getUser().id == projectRecords.createBy.id}">"1"</c:when><c:otherwise>"0"</c:otherwise></c:choose>
|
|
|
|
+ ,"canrecall":<c:choose><c:when test="${projectRecords.projectStatus == 3 && fns:getUser().id == projectRecords.createBy.id}">"1"</c:when><c:otherwise>"0"</c:otherwise></c:choose>
|
|
|
|
+ </shiro:hasPermission>
|
|
|
|
+ ,"cancancel":<c:choose><c:when test="${projectRecords.projectStatus == 2 && fns:getUser().id == projectRecords.createBy.id}">"1"</c:when><c:otherwise>"0"</c:otherwise></c:choose>
|
|
|
|
+
|
|
|
|
+ ,"deleteAdmin":<c:choose><c:when test="${'1' == projectRecords.flagAdmin && projectRecords.projectStatus == 5}">"1"</c:when><c:otherwise>"0"</c:otherwise></c:choose>
|
|
|
|
+ ,"modifyRecords":<c:choose><c:when test="${fns:getUser().id == projectRecords.createBy.id && '2' != projectRecords.projectReportStatus && '5' != projectRecords.projectReportStatus && projectRecords.projectStatus == 5}">"1"</c:when><c:otherwise>"0"</c:otherwise></c:choose>
|
|
|
|
+ <c:if test="${'1' == projectRecords.flagAdmin}">
|
|
|
|
+ ,"reportDataFlag":<c:choose><c:when test="${'0' == projectRecords.reportDataFlag && projectRecords.projectStatus == 5}">"1"</c:when><c:otherwise>"0"</c:otherwise></c:choose>
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${'0' == projectRecords.flagAdmin}">
|
|
|
|
+ ,"reportDataFlag":<c:choose><c:when test="${fns:getUser().id == projectRecords.createBy.id && '0' == projectRecords.reportDataFlag && projectRecords.projectStatus == 5}">"1"</c:when><c:otherwise>"0"</c:otherwise></c:choose>
|
|
|
|
+ </c:if>
|
|
|
|
+ </c:when>
|
|
|
|
+ <c:otherwise>
|
|
|
|
+ ,"candel":"0"
|
|
|
|
+ ,"canedit1":"0"
|
|
|
|
+ ,"canedit2":"0"
|
|
|
|
+ ,"canrecall":"0"
|
|
|
|
+ ,"cancancel":"0"
|
|
|
|
+ ,"deleteAdmin":"0"
|
|
|
|
+ ,"recordStatus":"0"
|
|
|
|
+ </c:otherwise>
|
|
|
|
+ </c:choose>
|
|
|
|
+ ,"submitMoneyStr":
|
|
|
|
+ <c:choose>
|
|
|
|
+ <c:when test="${'2'==projectRecords.submitMoney}">
|
|
|
|
+ "A级"
|
|
|
|
+ </c:when>
|
|
|
|
+ <c:otherwise>
|
|
|
|
+ "B级"
|
|
|
|
+ <%--<c:choose>
|
|
|
|
+ <c:when test="${'1'==projectRecords.emergencyProject}">
|
|
|
|
+ "B级紧急"
|
|
|
|
+ </c:when>
|
|
|
|
+ <c:otherwise>
|
|
|
|
+ "B级非紧急"
|
|
|
|
+ </c:otherwise>
|
|
|
|
+ </c:choose>--%>
|
|
|
|
+ </c:otherwise>
|
|
|
|
+ </c:choose>
|
|
|
|
+ <shiro:hasPermission name="ruralProject:ruralProjectRecords:edit">,"canedit3":<c:choose><c:when test="${projectRecords.projectStatus == 5 && fn:contains(projectRecords.leaderIds,fns:getUser().id)}">"1"</c:when><c:otherwise>"0"</c:otherwise></c:choose></shiro:hasPermission>
|
|
|
|
+ <shiro:hasPermission name="ruralProject:ruralProjectRecords:accessory">
|
|
|
|
+ ,"recordStatus":
|
|
|
|
+ <c:choose>
|
|
|
|
+ <c:when test="${0 == projectRecords.projectReportRecordStatus && projectRecords.projectStatus != 7}">"1"</c:when>
|
|
|
|
+ <c:otherwise>"0"</c:otherwise>
|
|
|
|
+ </c:choose>
|
|
|
|
+ </shiro:hasPermission>
|
|
|
|
+ <shiro:hasPermission name="ruralProject:ruralProjectView:consultingView">
|
|
|
|
+ ,"showView":1
|
|
|
|
+ </shiro:hasPermission>
|
|
|
|
+ }
|
|
|
|
+ </c:forEach>
|
|
|
|
+ </c:if>
|
|
|
|
+ ]
|
|
|
|
+ // ,even: true
|
|
|
|
+ // ,height: 315
|
|
|
|
+ });
|
|
|
|
+ $("#delUser").bind("click",function () {
|
|
|
|
+ //获得表格CheckBox已经选中的行的信息
|
|
|
|
+ var checkList = layui.table.checkStatus('checkboxTable').data;
|
|
|
|
+ //定义数组存放批量删除的行的id
|
|
|
|
+ var listId = [];
|
|
|
|
+ //进行遍历所有选中行数据,拿出每一行的id存储到数组中
|
|
|
|
+ $.each(checkList, function (i, data) {
|
|
|
|
+ listId.push(data.id);
|
|
|
|
+ });
|
|
|
|
+ if (listId.length <= 0) {
|
|
|
|
+ layer.msg("请选择需要下载的项目信息", {icon: 2})
|
|
|
|
+ } else {
|
|
|
|
+ $("#searchForm").attr("action","${ctx}/ruralProject/ruralProjectRecords/exportAll?listId="+ listId);
|
|
|
|
+ $("#searchForm").submit();
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ })
|
|
|
|
+
|
|
|
|
+ resizeListTable();
|
|
|
|
+ $("a").on("click",addLinkVisied);
|
|
|
|
+</script>
|
|
|
|
+<script>
|
|
|
|
+ resizeListWindow2();
|
|
|
|
+ $(window).resize(function(){
|
|
|
|
+ resizeListWindow2();
|
|
|
|
+ });
|
|
|
|
+</script>
|
|
|
|
+</body>
|
|
|
|
+</html>
|