|
@@ -0,0 +1,504 @@
|
|
|
|
+<%@ 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 src="${ctxStatic}/layer-v2.3/laydate/laydate.js"></script>--%>
|
|
|
|
+ <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'
|
|
|
|
+ });
|
|
|
|
+ laydate.render({
|
|
|
|
+ elem: '#endDate', //目标元素。由于laydate.js封装了一个轻量级的选择器引擎,因此elem还允许你传入class、tag但必须按照这种方式 '#id .class'
|
|
|
|
+ event: 'focus', //响应事件。如果没有传入event,则按照默认的click
|
|
|
|
+ type : 'date'
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ 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: ['保存','关闭'],
|
|
|
|
+
|
|
|
|
+ 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 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>
|
|
|
|
+</head>
|
|
|
|
+<body>
|
|
|
|
+<div class="wrapper wrapper-content">
|
|
|
|
+ <sys:message content="${message}"/>
|
|
|
|
+ <div class="layui-row">
|
|
|
|
+ <div class="full-width fl">
|
|
|
|
+ <div class="layui-row contentShadow shadowLR" id="queryDiv">
|
|
|
|
+ <form:form id="searchForm" modelAttribute="constructionContract" action="${ctx}/project/projectDesignChange/list" 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}"/>
|
|
|
|
+ <div class="commonQuery lw14">
|
|
|
|
+ <div class="layui-item query athird">
|
|
|
|
+ <label class="layui-form-label">项目名称:</label>
|
|
|
|
+ <div class="layui-input-block">
|
|
|
|
+ <form:input path="projectName" 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">
|
|
|
|
+ <form:input path="contractName" 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>
|
|
|
|
+ <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="lw14">
|
|
|
|
+ <div class="layui-item query athird">
|
|
|
|
+ <label class="layui-form-label">创建时间:</label>
|
|
|
|
+ <div class="layui-input-block">
|
|
|
|
+ <input id="startDate" placeholder="开始时间" name="startDate" type="text" readonly="readonly" maxlength="20" class="laydate-icondate form-control layer-date layui-input laydate-icon query-group"
|
|
|
|
+ value="<fmt:formatDate value="${constructionContract.startDate}" pattern="yyyy-MM-dd"/>"/>
|
|
|
|
+ </input>
|
|
|
|
+ <span class="group-sep">-</span>
|
|
|
|
+ <input id="endDate" placeholder="结束时间" name="endDate" type="text" readonly="readonly" maxlength="20" class="laydate-icondate form-control layer-date layui-input laydate-icon query-group"
|
|
|
|
+ value="<fmt:formatDate value="${constructionContract.endDate}" pattern="yyyy-MM-dd"/>"/>
|
|
|
|
+ </input>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>--%>
|
|
|
|
+ </form:form>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="full-width fl">
|
|
|
|
+ <div class="layui-form contentDetails contentShadow shadowLBR">
|
|
|
|
+ <div class="nav-btns">
|
|
|
|
+ <%--<button class="nav-btn nav-btn-add" title="签证汇总" onclick="openVisa('签证汇总','${ctx}/project/projectVisa/form','95%','95%')"><i class="fa fa-plus"></i> 添加</button>--%>
|
|
|
|
+ <button class="nav-btn layui-btn" id="btn-expand">全部展开</button>
|
|
|
|
+ <button class="nav-btn layui-btn-warm" id="btn-fold">全部折叠</button>
|
|
|
|
+ <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 id="permissionTable" class="layui-table" lay-filter="permissionTable"></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>
|
|
|
|
+
|
|
|
|
+ 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();
|
|
|
|
+ if(undefined == projectName){
|
|
|
|
+ projectName = "";
|
|
|
|
+ }
|
|
|
|
+ var contractName = $("#contractName").val();
|
|
|
|
+ if(undefined == contractName){
|
|
|
|
+ contractName = "";
|
|
|
|
+ }
|
|
|
|
+ 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/projectDesignChange/getVisaList?pageNo=${page.pageNo}&projectName='+projectName+'&contractName='+contractName,
|
|
|
|
+ page: false,
|
|
|
|
+ cols: [[
|
|
|
|
+ {type: 'numbers', align:'center', title: '序号' ,width:80},
|
|
|
|
+ {field: 'cnumber', title: '项目编号/合同编号',templet:function(d){
|
|
|
|
+ if(d.condition ==1){
|
|
|
|
+ return "<font>"+d.cnumber+"</font>";
|
|
|
|
+ }else if(d.condition ==2){
|
|
|
|
+ return "<font>"+d.cnumber+"</font>";
|
|
|
|
+ }else{
|
|
|
|
+ return "<font>"+d.cnumber+"</font>";
|
|
|
|
+ }
|
|
|
|
+ }},
|
|
|
|
+ {field: 'contractName', title: '项目名称/合同名称/签证编号',templet:function(d){
|
|
|
|
+ if(d.condition ==1){
|
|
|
|
+ return "<a class=\"attention-info pid\" title=\"" + d.contractName + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('查看项目信息', '${ctx}/project/projectRecords/view?id=" + d.id +"','95%', '95%')\">" + d.contractName + "</a>";
|
|
|
|
+ }else if(d.condition ==2){
|
|
|
|
+ return "<a class=\"attention-info pid\" title=\"" + d.contractName + "\" href=\"javascript:void(0);\" onclick=\"openDialogView('查看合同信息', '${ctx}/project/constructionContract/view?id=" + d.contractId +"','95%', '95%')\">" + d.contractName + "</a>";
|
|
|
|
+ }else{
|
|
|
|
+ return "<a class=\"attention-info\" href=\"javascript:void(0)\" onclick=\"openDialogView('查看设计变更内容', '${ctx}/project/projectDesignChange/view?id="+d.id+"','95%', '95%')\">" + d.number + "</a>";
|
|
|
|
+ }
|
|
|
|
+ }},
|
|
|
|
+ {field: 'sendMoney', align:'center', title: '送审金额',templet: function(d){
|
|
|
|
+ if(d.condition ==1){
|
|
|
|
+ return "";
|
|
|
|
+ }else if(d.condition ==2){
|
|
|
|
+ return "";
|
|
|
|
+ }else{
|
|
|
|
+ return "<font>"+d.sendMoney+"</font>";
|
|
|
|
+ }
|
|
|
|
+ }},
|
|
|
|
+ {field: 'confirmMoney', align:'center', title: '定审金额',templet: function(d){
|
|
|
|
+ if(d.condition ==1){
|
|
|
|
+ return "";
|
|
|
|
+ }else if(d.condition ==2){
|
|
|
|
+ return "";
|
|
|
|
+ }else{
|
|
|
|
+ return "<font>"+d.confirmMoney+"</font>";
|
|
|
|
+ }
|
|
|
|
+ }},
|
|
|
|
+ {field: 'date', align:'center', title: '签证日期',width:100,templet: function(d){
|
|
|
|
+ var date=d.date;
|
|
|
|
+ /*date=date.replace(new RegExp(/-/gm) ,"/");*/
|
|
|
|
+
|
|
|
|
+ if(d.condition ==1){
|
|
|
|
+ return "<font style = 'font-size:14px;font-weight:500;'>"+layui.util.toDateString(date,'yyyy-MM-dd')+"</font>";
|
|
|
|
+ }else if(d.condition ==2){
|
|
|
|
+ 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>";
|
|
|
|
+ }
|
|
|
|
+ }},
|
|
|
|
+ {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.condition ==1) {
|
|
|
|
+ return [
|
|
|
|
+ '',
|
|
|
|
+ ].join('');
|
|
|
|
+ } else if(d.condition ==2) {
|
|
|
|
+ return [
|
|
|
|
+ '<a href="javascript:void(0)" onclick="openDialogreAudit(\'新增设计变更内容\', \'${ctx}/project/projectDesignChange/form?type=2&contractId='+d.contractId+' \',\'95%\',\'95%\')" style=\"color: white;background: darkseagreen\" class="op-btn op-btn-add" ><i class="fa fa-plus"></i> 新增</a>',
|
|
|
|
+ ].join('');
|
|
|
|
+ } else if (d.condition ==3){
|
|
|
|
+ return [
|
|
|
|
+ '<a href="javascript:void(0)" onclick="openDialogreAudit(\'修改设计变更内容\', \'${ctx}/project/projectDesignChange/updateTable?type=2&id='+d.id+'&contractId='+d.contractId+'\',\'95%\',\'95%\')" class="op-btn op-btn-edit" ><i class="fa fa-edit"></i> 编辑</a>',
|
|
|
|
+ '<a href="${ctx}/project/projectDesignChange/delete?type=2&id='+d.id+'" onclick="return confirmxRefresh(\'确认要删除该设计变更汇总表吗?\', this.href)" class="op-btn op-btn-delete"><i class="fa fa-trash"></i> 删除</a>',
|
|
|
|
+ ].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/projectDesignChange/list';
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ top.layer.close(index);
|
|
|
|
+ });
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+</script>
|
|
|
|
+</body>
|
|
|
|
+</html>
|