|
@@ -0,0 +1,820 @@
|
|
|
|
+<%@ page contentType="text/html;charset=UTF-8" %>
|
|
|
|
+<%@ include file="/webpage/include/taglib.jsp"%>
|
|
|
|
+<html>
|
|
|
|
+<head>
|
|
|
|
+ <title>项目登记</title>
|
|
|
|
+ <meta name="decorator" content="default"/>
|
|
|
|
+ <link href="${ctxStatic}/layer-v2.3/layui/tableTree/treetable.css" rel="stylesheet" />
|
|
|
|
+ <script type="text/javascript" src="${ctxStatic}/layui/layuidown.js"></script>
|
|
|
|
+ <link rel='stylesheet' type="text/css" href="${ctxStatic}/layui/layuidown.css"/>
|
|
|
|
+ <style>
|
|
|
|
+ .layui-table th{
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ /*表头内容居中显示*/
|
|
|
|
+ text-align: center;
|
|
|
|
+ }
|
|
|
|
+ .pid{
|
|
|
|
+ font-size:14px;
|
|
|
|
+ font-weight:400;
|
|
|
|
+ }
|
|
|
|
+ </style>
|
|
|
|
+ <script type="text/javascript">
|
|
|
|
+ $(document).ready(function() {
|
|
|
|
+
|
|
|
|
+ //搜索框收放
|
|
|
|
+ $('#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,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
|
|
|
|
+ }else {
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ btn3: function (index) {
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ 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) {
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ function openDialogreReportSwitch(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(",");
|
|
|
|
+ $.ajax({
|
|
|
|
+ url: "${ctx}/ruralProject/ruralCostProjectMessage/getReportSwitch",
|
|
|
|
+ success: function (data) {
|
|
|
|
+ if (data){
|
|
|
|
+ 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) {
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }else{
|
|
|
|
+ top.layer.msg("上报功能已关闭", {icon: 0});
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ </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>
|
|
|
|
+</head>
|
|
|
|
+<body>
|
|
|
|
+<div class="wrapper wrapper-content">
|
|
|
|
+ <sys:message content="${message}"/>
|
|
|
|
+ <div class="layui-row">
|
|
|
|
+ <div class="full-width fl">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="full-width fl">
|
|
|
|
+ <div class="layui-row contentShadow shadowLR" id="queryDiv">
|
|
|
|
+ <form:form id="searchForm" modelAttribute="adminProjectReportedImport" action="${ctx}/project/adminProjectReportedImport/" 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}"/>
|
|
|
|
+ <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="layui-item query athird ">
|
|
|
|
+ <label class="layui-form-label">合同编号:</label>
|
|
|
|
+ <div class="layui-input-block">
|
|
|
|
+ <form:input path="ZiXunHTBH" htmlEscape="false" maxlength="255" 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>
|
|
|
|
+ </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 double-line">造价记录编号:</label>
|
|
|
|
+ <div class="layui-input-block">
|
|
|
|
+ <form:input path="DangABH" htmlEscape="false" maxlength="255" 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:getDictList('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">
|
|
|
|
+ <div class="layui-btn-group">
|
|
|
|
+ <shiro:hasPermission name="project:adminProjectReportedImport:add">
|
|
|
|
+ <table:addRow url="${ctx}/project/projectRecords/form" title="项目"></table:addRow><!-- 增加按钮 -->
|
|
|
|
+ </shiro:hasPermission>
|
|
|
|
+ <shiro:hasPermission name="project:adminProjectReportedImport:del">
|
|
|
|
+ <%--<table:delRow url="${ctx}/project/projectRecords/deleteAll" id="contentTable"></table:delRow><!-- 删除按钮 -->--%>
|
|
|
|
+ </shiro:hasPermission>
|
|
|
|
+
|
|
|
|
+ <shiro:hasPermission name="project:adminProjectReportedImport:import">
|
|
|
|
+ <table:importExcel url="${ctx}/project/adminProjectReportedImport/import"></table:importExcel><!-- 导入按钮 -->
|
|
|
|
+ </shiro:hasPermission>
|
|
|
|
+
|
|
|
|
+ <shiro:hasPermission name="project:adminProjectReportedImport:export">
|
|
|
|
+ <table:exportExcel url="${ctx}/project/projectRecords/export"></table:exportExcel><!-- 导出按钮 -->
|
|
|
|
+ </shiro:hasPermission>
|
|
|
|
+ <shiro:hasPermission name="project:projectRecords:lockProject">
|
|
|
|
+ <button type="button" data-toggle="tooltip" data-placement="top" class="layui-btn layui-btn-sm layui-bg-blue" id="lockProject"> 锁定</button>
|
|
|
|
+ </shiro:hasPermission>
|
|
|
|
+ <shiro:hasPermission name="project:projectRecords:noLockProject">
|
|
|
|
+ <button type="button" data-toggle="tooltip" data-placement="top" class="layui-btn layui-btn-sm layui-bg-blue" id="noLockProject"> 解除锁定</button>
|
|
|
|
+ </shiro:hasPermission>
|
|
|
|
+ <button class="layui-btn layui-btn-sm" data-toggle="tooltip" data-placement="left" onclick="sortOrRefresh()" title="刷新"> 刷新</button>
|
|
|
|
+ <div class=" layui-btn-sm" style="float: right;width: 300px">
|
|
|
|
+ <span style="color: red">咨询营业收入:${moneyAll}(万元)</span>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <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>
|
|
|
|
+
|
|
|
|
+ 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:60}
|
|
|
|
+ ,{field:'ProjectName',align:'center', title: '咨询项目名称',minWidth:200,templet:function(d){
|
|
|
|
+ return "<a class=\"attention-info\" title=\"" + d.ProjectName + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('查看项目', '${ctx}/project/adminProjectReportedImport/view?id=" + d.id +"','95%', '95%')\">" + d.ProjectName + "</a>";
|
|
|
|
+ }}
|
|
|
|
+ ,{field:'ziXunHTBH',align:'center', title: '合同编号',minWidth:150}
|
|
|
|
+ ,{field:'WeiTuoDW', align:'center',title: '委托单位',minWidth:200}
|
|
|
|
+ ,{field:'LianXiDH', align:'center',title: '委托单位电话',minWidth:200}
|
|
|
|
+ ,{field:'DangABH', align:'center',title: '造价记录编号',minWidth:200}
|
|
|
|
+ ,{field:'BaoGaoShuQianFaDate',align:'center', title: '出具咨询报告日期', width:180}
|
|
|
|
+ ,{field:'ZiXunShouRu',align:'center', title: '造价咨询营业收入', width:120}
|
|
|
|
+ ,{field:'ZiXunBDE',align:'center', title: '咨询标的额', width:100}
|
|
|
|
+ ,{field:'createName',align:'center', title: '创建人', width:100}
|
|
|
|
+ ,{field:'createDate',align:'center', title: '创建日期', width:100}
|
|
|
|
+ ,{align:'center', title: '上报', width:100,templet:function(d){
|
|
|
|
+ var st = getReportedState(""+d.reportedState);
|
|
|
|
+ if(st.action)
|
|
|
|
+ var xml = "<span onclick=\"openDialogView('流程追踪', '${ctx}/ruralProject/ruralProjectMessage/getReportedProcess?processInstanceId=" + d.processInstanceId + "','95%','95%')\" class=\"status-label status-label-" + st.label + "\" >" + st.status + "</span>";
|
|
|
|
+ else
|
|
|
|
+ var xml = "<span style=\"cursor:default;\" class=\"status-label status-label-" + st.label + "\" >" + st.status + "</span>";
|
|
|
|
+ return xml;
|
|
|
|
+ }}
|
|
|
|
+ ,{field:'op',align:'center',title:"操作",width:130,templet:function(d){
|
|
|
|
+ ////对操作进行初始化
|
|
|
|
+ var xml="<div class=\"layui-btn-group\">";
|
|
|
|
+ if(d.canedit3 != undefined && d.canedit3 =="1")
|
|
|
|
+ {
|
|
|
|
+ if(d.reportedState !=undefined && d.reportedState != null && d.reportedState !='' && d.reportedState !='0'){
|
|
|
|
+ if(d.reportedState == 1){
|
|
|
|
+ xml+="<a href=\"#\" onclick=\"openDialogreReportSwitch('上报管理', '${ctx}/project/adminProjectReportedImport/updateReported?id=" + d.id + " ','95%', '95%','','上报,暂存,关闭')\" class=\"layui-btn layui-btn-xs layui-bg-green\" style='height: 32px;margin-top: 5px;margin-bottom: 5px;' > 修改上报</a>";
|
|
|
|
+ xml+="<a href=\"${ctx}/project/adminProjectReportedImport/delete?id=" + d.id + "\" onclick=\"return confirmx('确认要删除该项目信息吗?', this.href)\" class=\"layui-btn layui-btn-xs btn-danger btn-xs layui-bg-red\" > 删除</a>";
|
|
|
|
+ }
|
|
|
|
+ if(d.reportedState == 2){
|
|
|
|
+ xml+="<a href=\"${ctx}/project/adminProjectReportedImport/cancelInvalidateByReported?id=" + d.id + "&processInstanceId=" + d.processInstanceId + "\" onclick=\"return confirmx('确认要撤回该上报审批吗?', this.href)\" class=\"layui-btn layui-btn-xs layui-bg-red\" style='height: 32px;margin-top: 5px;margin-bottom: 5px;' > 撤回上报</a>";
|
|
|
|
+ }
|
|
|
|
+ /*撤回修改*/
|
|
|
|
+ if(d.reportedState == 3){
|
|
|
|
+ xml+="<a href=\"#\" onclick=\"openDialogreReportSwitch('上报管理', '${ctx}/project/adminProjectReportedImport/updateReported?id=" + d.id + " ','95%', '95%','','上报,关闭')\" class=\"layui-btn layui-btn-xs layui-bg-green\" style='height: 32px;margin-top: 5px;margin-bottom: 5px;' > 修改上报</a>";
|
|
|
|
+ xml+="<a href=\"${ctx}/project/adminProjectReportedImport/delete?id=" + d.id + "\" onclick=\"return confirmx('确认要删除该项目信息吗?', this.href)\" class=\"layui-btn layui-btn-xs btn-danger btn-xs layui-bg-red\" > 删除</a>";
|
|
|
|
+ }
|
|
|
|
+ /*驳回修改*/
|
|
|
|
+ if(d.reportedState == 4){
|
|
|
|
+ //驳回操作
|
|
|
|
+ xml+="<a href=\"#\" onclick=\"openDialogreReportSwitch('上报管理', '${ctx}/project/adminProjectReportedImport/reportedModify?id=" + d.id + " ','95%', '95%','','上报,关闭')\" class=\"layui-btn layui-btn-xs layui-bg-green\" style='height: 32px;margin-top: 5px;margin-bottom: 5px;' > 修改上报</a>";
|
|
|
|
+ xml+="<a href=\"${ctx}/project/adminProjectReportedImport/delete?id=" + d.id + "\" onclick=\"return confirmx('确认要删除该项目信息吗?', this.href)\" class=\"layui-btn layui-btn-xs btn-danger btn-xs layui-bg-red\" > 删除</a>";
|
|
|
|
+ }
|
|
|
|
+ }else{
|
|
|
|
+ xml+="<a href=\"#\" onclick=\"openDialogreReportSwitch('上报管理', '${ctx}/project/adminProjectReportedImport/updateReported?id=" + d.id + " ','95%', '95%','','上报,关闭')\" class=\"layui-btn layui-btn-xs layui-bg-blue\" > 上报</a>";
|
|
|
|
+ xml+="<a href=\"${ctx}/project/adminProjectReportedImport/delete?id=" + d.id + "\" onclick=\"return confirmx('确认要删除该项目信息吗?', this.href)\" class=\"layui-btn layui-btn-xs btn-danger btn-xs layui-bg-red\" > 删除</a>";
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ xml+="</div>"
|
|
|
|
+ return xml;
|
|
|
|
+
|
|
|
|
+ }}
|
|
|
|
+ ]]
|
|
|
|
+ ,data: [
|
|
|
|
+ <c:if test="${ not empty page.list}">
|
|
|
|
+ <c:forEach items="${page.list}" var="projectRecords" varStatus="index">
|
|
|
|
+ <c:if test="${index.index != 0}">,</c:if>
|
|
|
|
+ {
|
|
|
|
+ "index":"${index.index+1}"
|
|
|
|
+ ,"id":"${projectRecords.id}"
|
|
|
|
+ ,"ziXunHTBH":"${projectRecords.ziXunHTBH}"
|
|
|
|
+ ,"ProjectName":"<c:out value="${projectRecords.projectName}" escapeXml="true"/>"
|
|
|
|
+ ,"WeiTuoDW":"${projectRecords.weiTuoDW}"
|
|
|
|
+ ,"LianXiDH":"${projectRecords.lianXiDH}"
|
|
|
|
+ ,"DangABH":"${projectRecords.dangABH}"
|
|
|
|
+ ,"BaoGaoShuQianFaDate":"${projectRecords.baoGaoShuQianFaDate}"
|
|
|
|
+ ,"ZiXunShouRu":"${projectRecords.ziXunShouRu}"
|
|
|
|
+ ,"ZiXunBDE":"${projectRecords.ziXunBDE}"
|
|
|
|
+ ,"createName":"${projectRecords.createBy.name}"
|
|
|
|
+ ,"reportedState":"${projectRecords.reportStatus}"
|
|
|
|
+ ,"processInstanceId":"${projectRecords.processInstanceId}"
|
|
|
|
+ ,"createDate":"<fmt:formatDate value="${projectRecords.createDate}" pattern="yyyy-MM-dd"/>"
|
|
|
|
+ <shiro:hasPermission name="project:adminProjectReportedImport:edit">,"canedit3":<c:choose><c:when test="${fn:contains(projectRecords.createBy.id,fns:getUser().id)}">"1"</c:when><c:otherwise>"0"</c:otherwise></c:choose></shiro:hasPermission>
|
|
|
|
+ }
|
|
|
|
+ </c:forEach>
|
|
|
|
+ </c:if>
|
|
|
|
+ ]
|
|
|
|
+ // ,even: true
|
|
|
|
+ // ,height: 315
|
|
|
|
+ });
|
|
|
|
+ $("#lockProject").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}/project/projectRecords/lockProject?listId="+ listId);
|
|
|
|
+ $("#searchForm").submit();
|
|
|
|
+ layer.msg("锁定成功", {icon: 1})
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ $("#noLockProject").bind("click",function () {
|
|
|
|
+ $("#searchForm").attr("action","${ctx}/project/projectRecords/noLockProject");
|
|
|
|
+ $("#searchForm").submit();
|
|
|
|
+ layer.msg("解除锁定成功", {icon: 1})
|
|
|
|
+ return true;
|
|
|
|
+ });
|
|
|
|
+ })
|
|
|
|
+
|
|
|
|
+ resizeListTable();
|
|
|
|
+ $("a").on("click",addLinkVisied);
|
|
|
|
+</script>
|
|
|
|
+<script>
|
|
|
|
+ resizeListWindow2();
|
|
|
|
+ $(window).resize(function(){
|
|
|
|
+ resizeListWindow2();
|
|
|
|
+ });
|
|
|
|
+</script>
|
|
|
|
+<script src="${ctxStatic}/layer-v2.3/layui/layui.all.js" charset="utf-8"></script>
|
|
|
|
+<script src="${ctxStatic}/layer-v2.3/layui/tableTree/treetable.js" charset="utf-8"></script>
|
|
|
|
+<%--<script>
|
|
|
|
+ /*使用模块加载的方式 加载文件*/
|
|
|
|
+ layui.config({
|
|
|
|
+ base: '${ctx}/resoueces/css/layui/module/'
|
|
|
|
+ }).extend({
|
|
|
|
+ treetable: 'treetable-lay/treetable'
|
|
|
|
+ }).use(['layer', 'table', 'treetable'], function () {
|
|
|
|
+ var $ = layui.jquery;
|
|
|
|
+ var table = layui.table;
|
|
|
|
+ var layer = layui.layer;
|
|
|
|
+ var treetable = layui.treetable;
|
|
|
|
+
|
|
|
|
+ // 渲染表格
|
|
|
|
+ var renderTable = function () {
|
|
|
|
+ var projectName = $("#projectName").val();
|
|
|
|
+ var workContractInfoName = $("#workContractInfoName").val();
|
|
|
|
+ var workContractInfoClientName = $("#workContractInfoClientName").val();
|
|
|
|
+ if(undefined == workContractInfoName){
|
|
|
|
+ workContractInfoName = "";
|
|
|
|
+ }
|
|
|
|
+ if(undefined == workContractInfoClientName){
|
|
|
|
+ workContractInfoClientName = "";
|
|
|
|
+ }
|
|
|
|
+ layer.load(2);
|
|
|
|
+ treetable.render({
|
|
|
|
+ treeColIndex: 1,//树形图标显示在第几列
|
|
|
|
+ treeSpid: 0,//最上级的父级id
|
|
|
|
+ treeIdName: 'permissionId',//id字段的名称
|
|
|
|
+ treePidName: 'pid',//pid字段的名称
|
|
|
|
+ treeDefaultClose: true,//是否默认折叠
|
|
|
|
+ treeLinkage: true,//父级展开时是否自动展开所有子级
|
|
|
|
+ elem: '#permissionTable',
|
|
|
|
+ url: '${ctx}/project/projectRecords/getProjectList?projectId=${projectRecords.id}&pageNo=${page.pageNo}&projectName='+$("#projectName").val()+'&leaderNameStr='+$("#leaderNameStr").val()+'&workContractInfo.name='+workContractInfoName+'&workContractInfo.client.name='+workContractInfoClientName+'&beginDate='+$("#beginDate").val()+'&endDate='+$("#endDate").val()+'&projectStatus='+$("#projectStatus").val(),
|
|
|
|
+ page: false,
|
|
|
|
+ cols: [[
|
|
|
|
+ {type: 'numbers', align:'center', title: '序号' ,width:80},
|
|
|
|
+ {field: 'projectId', title: '项目编号/项目阶段编号'},
|
|
|
|
+ {field: 'projectName', align:'center', title: '项目名称/成果文件编号',templet:function(d){
|
|
|
|
+ if(0 == d.pid){
|
|
|
|
+ return "<a class=\"attention-info pid\" title=\"" + d.projectName + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('查看项目', '${ctx}/project/projectRecords/view?id=" + d.id +"','95%', '95%')\">" + d.projectName + "</a>";
|
|
|
|
+ }else{
|
|
|
|
+ return "<a class=\"attention-info\" href=\"javascript:void(0)\" onclick=\"openDialogView('查看成果文件名称', '${ctx}/projectcontentinfo/projectcontentinfo/form?view=reportView&dictType="+d.dictType+"&id="+d.contentPId+"&parentIds="+d.parentIds+"&infoId="+d.id+"','95%', '95%')\">" + d.projectName + "</a>";
|
|
|
|
+ }
|
|
|
|
+ }},
|
|
|
|
+ {field: 'clientName', align:'center', title: '委托方/当前阶段',templet: function(d){
|
|
|
|
+ if(0 == d.pid){
|
|
|
|
+ return "<font style = 'font-size:14px;font-weight:500;'>"+d.clientName+"</font>";
|
|
|
|
+ }else{
|
|
|
|
+ return "<font>"+d.clientName+"</font>";
|
|
|
|
+ }
|
|
|
|
+ }},
|
|
|
|
+ {field: 'projectLeader', align:'center', title: '项目负责人/工作内容',templet: function(d){
|
|
|
|
+ if(0 == d.pid){
|
|
|
|
+ return "<font style = 'font-size:14px;font-weight:500;'>"+d.projectLeader+"</font>";
|
|
|
|
+ }else{
|
|
|
|
+ return "<font>"+d.projectLeader+"</font>";
|
|
|
|
+ }
|
|
|
|
+ }},
|
|
|
|
+ {field: 'projectRegistrant', align:'center', title: '登记人',templet: function(d){
|
|
|
|
+ if(0 == d.pid){
|
|
|
|
+ return "<font style = 'font-size:14px;font-weight:500;'>"+d.projectRegistrant+"</font>";
|
|
|
|
+ }else{
|
|
|
|
+ return "<font>"+d.projectRegistrant+"</font>";
|
|
|
|
+ }
|
|
|
|
+ }},
|
|
|
|
+ {field: 'createDate', align:'center', title: '登记日期',width:100,templet: function(d){
|
|
|
|
+ var date=d.createDate;
|
|
|
|
+ date=date.replace(new RegExp(/-/gm) ,"/");
|
|
|
|
+
|
|
|
|
+ if(0 == d.pid){
|
|
|
|
+ return "<font style = 'font-size:14px;font-weight:500;'>"+layui.util.toDateString(date,'yyyy-MM-dd')+"</font>";
|
|
|
|
+ }else{
|
|
|
|
+ return "<font>"+layui.util.toDateString(date,'yyyy-MM-dd')+"</font>";
|
|
|
|
+ }
|
|
|
|
+ }},
|
|
|
|
+ {align:'center', title: '状态', width:70,templet:function(d){
|
|
|
|
+ var st = getAuditState(""+d.projectStatus);
|
|
|
|
+ if(d.pid ==0){
|
|
|
|
+ if(st.action)
|
|
|
|
+ var xml = "<span onclick=\"openDialogView('流程追踪', '${ctx}/project/projectRecords/getProcess?id=" + d.id + "','95%','95%')\" class=\"status-label status-label-" + st.label + "\" >" + st.status + "</span>";
|
|
|
|
+ else
|
|
|
|
+ var xml = "<span style=\"cursor:default;\" class=\"status-label status-label-" + st.label + "\" >" + st.status + "</span>";
|
|
|
|
+ return xml;
|
|
|
|
+ }else if(d.pid !=0){
|
|
|
|
+ if(st.action)
|
|
|
|
+ var xml = "<span onclick=\"openDialogView('流程追踪', '${ctx}/projectcontentinfo/projectcontentinfo/getProcessOne?id=" + d.id + "&projectReportData.id="+ d.id + "&type="+d.projectStatus+"','95%','95%')\" class=\"status-label status-label-" + st.label + "\" >" + st.status + "</span>";
|
|
|
|
+ else
|
|
|
|
+ var xml = "<span style=\"cursor:default;\" class=\"status-label status-label-" + st.label + "\" >" + st.status + "</span>";
|
|
|
|
+ return xml;
|
|
|
|
+ }else{
|
|
|
|
+ return '';
|
|
|
|
+ }
|
|
|
|
+ }},
|
|
|
|
+ {templet: complain, align:'center', title: '操作',width:130}
|
|
|
|
+ ]],
|
|
|
|
+ done: function () {
|
|
|
|
+ layer.closeAll('loading');
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ };
|
|
|
|
+
|
|
|
|
+ renderTable();
|
|
|
|
+
|
|
|
|
+ //触发三个button按钮
|
|
|
|
+ $('#btn-expand').click(function () {
|
|
|
|
+ treetable.expandAll('#permissionTable');
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ $('#btn-fold').click(function () {
|
|
|
|
+ treetable.foldAll('#permissionTable');
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ $('#btn-refresh').click(function () {
|
|
|
|
+ renderTable();
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ function complain(d){//操作中显示的内容
|
|
|
|
+ if(d.loginId == d.createId) {
|
|
|
|
+ if (0 == d.pid) {
|
|
|
|
+ if(1==d.projectStatus){
|
|
|
|
+ return [
|
|
|
|
+ '<a href="javascript:void(0)" onclick="openDialogres(\'暂存项目修改\', \'${ctx}/project/projectRecords/form?id=' + d.id +'\',\'95%\',\'95%\')" class="op-btn op-btn-edit" ><i class="fa fa-edit"></i> 修改</a>',
|
|
|
|
+ '<a href="${ctx}/project/projectRecords/delete?id='+d.id+'" onclick="return confirmx(\'确认要删除该项目信息吗?\', this.href)" class="op-btn op-btn-delete"><i class="fa fa-trash"></i> 删除</a>',
|
|
|
|
+ ].join('');
|
|
|
|
+ }
|
|
|
|
+ else if(2==d.projectStatus){
|
|
|
|
+ return [
|
|
|
|
+ '<a href="${ctx}/project/projectRecords/revoke?id='+d.id+ "&processInstanceId=" + d.procId +'" onclick="return confirmx(\'确认要撤回该项目审批吗?\', this.href)" class="op-btn op-btn-cancel"><i class="glyphicon glyphicon-share-alt"></i> 撤回</a>',
|
|
|
|
+ ].join('');
|
|
|
|
+ }
|
|
|
|
+ else if(3==d.projectStatus){
|
|
|
|
+ return [
|
|
|
|
+ '<a href="javascript:void(0)" onclick="openDialogreAudit(\'撤回项目调整\', \'${ctx}/project/projectRecords/form?id=' + d.id +'\',\'95%\',\'95%\')" class="op-btn op-btn-edit" ><i class="fa fa-edit"></i> 修改</a>',
|
|
|
|
+ '<a href="${ctx}/project/projectRecords/delete?id='+d.id+'" onclick="return confirmx(\'确认要删除该项目信息吗?\', this.href)" class="op-btn op-btn-delete"><i class="fa fa-trash"></i> 删除</a>',
|
|
|
|
+ ].join('');
|
|
|
|
+ }
|
|
|
|
+ else if(4==d.projectStatus){
|
|
|
|
+ return [
|
|
|
|
+ '<a href="javascript:void(0)" onclick="openDialogreAudit(\'驳回项目调整\', \'${ctx}/project/projectRecords/modify?id=' + d.id +'\',\'95%\',\'95%\')" class="op-btn op-btn-edit" ><i class="fa fa-edit"></i> 修改</a>',
|
|
|
|
+ '<a href="${ctx}/project/projectRecords/delete?id='+d.id+'" onclick="return confirmx(\'确认要删除该项目信息吗?\', this.href)" class="op-btn op-btn-delete"><i class="fa fa-trash"></i> 删除</a>',
|
|
|
|
+ ].join('');
|
|
|
|
+ }
|
|
|
|
+ else if(5==d.projectStatus){
|
|
|
|
+ return [
|
|
|
|
+ '<a href="javascript:void(0)" onclick="openDialogreAudit(\'项目变更管理\', \'${ctx}/project/projectRecordsAlter/form?alterBeforeRecords.id=' + d.id +'\',\'95%\',\'95%\')" style=\"color: white;background: darkseagreen\" class="op-btn op-btn-op-btn-revert" ><i class="fa fa-edit"></i> 变更</a>',
|
|
|
|
+ ].join('');
|
|
|
|
+ }else{
|
|
|
|
+ return[''].join('');
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ //
|
|
|
|
+ if(d.projectStatus == 1){
|
|
|
|
+ return [
|
|
|
|
+ '<a href="javascript:void(0)" onclick="openDialogres(\'修改报告\', \'${ctx}/projectcontentinfo/projectcontentinfo/form?view=report&condition=record&dictType='+d.dictType+'&id='+d.contentPId+'&parentIds='+d.parentIds+'&projectReportData.id='+d.id+'\',\'95%\',\'95%\')" class="op-btn op-btn-edit" ><i class="fa fa-edit"></i> 修改</a>',
|
|
|
|
+ '<a href="${ctx}/projectcontentinfo/projectcontentinfo/delete?infoId='+d.id+'&id='+d.contentPId+'&type=8&condition=record" onclick="return confirmxRefresh(\'确认要删除该工作内容报告吗?\', this.href)" class="op-btn op-btn-delete"><i class="fa fa-trash"></i> 删除</a>',
|
|
|
|
+ ].join('');
|
|
|
|
+ }else if(d.projectStatus == 2){
|
|
|
|
+ return [
|
|
|
|
+ '<a href="${ctx}/projectcontentinfo/projectcontentinfo/cancelInvalidate?infoId='+d.id+'&id='+d.contentPId+'&type=8&condition=record" onclick="return confirmxRefresh(\'确认要撤回该工作内容报告吗?\', this.href)" class="op-btn op-btn-cancel"><i class="glyphicon glyphicon-share-alt"></i> 撤回</a>',
|
|
|
|
+ ].join('');
|
|
|
|
+ }else if(d.projectStatus == 3){
|
|
|
|
+ return [
|
|
|
|
+ '<a href="javascript:void(0)" onclick="openDialogreAudit(\'修改报告\', \'${ctx}/projectcontentinfo/projectcontentinfo/form?view=report&condition=record&dictType='+d.dictType+'&id='+d.contentPId+'&parentIds='+d.parentIds+'&projectReportData.id='+d.id+'\',\'95%\',\'95%\')" class="op-btn op-btn-edit" ><i class="fa fa-edit"></i> 修改</a>',
|
|
|
|
+ '<a href="${ctx}/projectcontentinfo/projectcontentinfo/delete?infoId='+d.id+'&id='+d.contentPId+'&type=8&condition=record" onclick="return confirmxRefresh(\'确认要删除该工作内容报告吗?\', this.href)" class="op-btn op-btn-delete"><i class="fa fa-trash"></i> 删除</a>',
|
|
|
|
+ ].join('');
|
|
|
|
+ }else if(d.projectStatus == 4){
|
|
|
|
+ return [
|
|
|
|
+ '<a href="javascript:void(0)" onclick="openDialogreAudit(\'修改报告\', \'${ctx}/projectcontentinfo/projectcontentinfo/form?view=reportModify&condition=record&dictType='+d.dictType+'&id='+d.contentPId+'&parentIds='+d.parentIds+'&projectReportData.id='+d.id+'\',\'95%\',\'95%\')" class="op-btn op-btn-edit" ><i class="fa fa-edit"></i> 修改</a>',
|
|
|
|
+ '<a href="${ctx}/projectcontentinfo/projectcontentinfo/delete?infoId='+d.id+'&id='+d.contentPId+'&type=8&condition=record" onclick="return confirmxRefresh(\'确认要删除该工作内容报告吗?\', this.href)" class="op-btn op-btn-delete"><i class="fa fa-trash"></i> 删除</a>',
|
|
|
|
+ ].join('');
|
|
|
|
+ }else if(d.projectStatus == 5){
|
|
|
|
+ return [
|
|
|
|
+ '<a href="javascript:void(0)" onclick="openDialogres(\'报告作废\', \'${ctx}/projectcontentinfo/projectcontentinfo/form?view=reportInvalid&condition=record&dictType='+d.dictType+'&id='+d.contentPId+'&parentIds='+d.parentIds+'&projectReportData.id='+d.id+'\',\'95%\',\'95%\')" class="op-btn op-btn-invalid" ><i class="fa fa-trash-o"></i> 作废</a>',
|
|
|
|
+ ].join('');
|
|
|
|
+ }else{
|
|
|
|
+ return[''].join('');
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }else{
|
|
|
|
+ return[''].join('');
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ //监听工具条
|
|
|
|
+ table.on('tool(permissionTable)', function (obj) {
|
|
|
|
+ var data = obj.data;
|
|
|
|
+ var layEvent = obj.event;
|
|
|
|
+ if(data.permissionName!=null){
|
|
|
|
+ if (layEvent === 'del') {
|
|
|
|
+ layer.msg('删除' + data.id);
|
|
|
|
+ } else if (layEvent === 'edit') {
|
|
|
|
+ layer.msg('修改' + data.id);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+</script>
|
|
|
|
+<script>
|
|
|
|
+ function openDialogres(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){
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ function openDialogreAudit(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){
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ // 确认对话框
|
|
|
|
+ function confirmxRefresh(mess, href){
|
|
|
|
+ top.layer.confirm(mess, {icon: 3, title:'系统提示'}, function(index){
|
|
|
|
+ //do something
|
|
|
|
+ if (typeof href == 'function') {
|
|
|
|
+ href();
|
|
|
|
+ }else{
|
|
|
|
+ resetTip(); //loading();
|
|
|
|
+ $.ajax({
|
|
|
|
+ url:href,
|
|
|
|
+ data:$('#loginForm').serialize(),
|
|
|
|
+ type:"post",
|
|
|
|
+ success:function(data){
|
|
|
|
+ if(data.status){
|
|
|
|
+ parent.layer.msg(data.msg,{icon:1});
|
|
|
|
+ }else {
|
|
|
|
+ parent.layer.msg(data.msg,{icon:2});
|
|
|
|
+ }
|
|
|
|
+ //parent.refreshTrees();
|
|
|
|
+ location = '${ctx}/project/projectRecords/list';
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ top.layer.close(index);
|
|
|
|
+ });
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+</script>--%>
|
|
|
|
+</body>
|
|
|
|
+</html>
|