|
@@ -288,10 +288,14 @@
|
|
|
onLoadSuccess: function () {//当所有数据被加载时触发处理函数
|
|
|
var data = $('#bootstrap-table').bootstrapTable('getData', true);//获取当前页数据
|
|
|
//这里合并两次是因为修改窗体高度会使表格变回去,需要先设置高度,所以先合并计算高度后再合并
|
|
|
+ var iframeName = "postIframe";
|
|
|
+ if(declarationType == dec_type.TYZP || declarationType == dec_type.ZZZP || declarationType == dec_type.ZPJG){
|
|
|
+ iframeName = "iframe1";
|
|
|
+ }
|
|
|
if (data.length>0){
|
|
|
- parent.document.getElementById("postIframe").style.height = ((80 * (data.length + 1)) + 150) + 'px';
|
|
|
+ parent.document.getElementById(iframeName).style.height = ((80 * (data.length + 1)) + 150) + 'px';
|
|
|
}else {
|
|
|
- parent.document.getElementById("postIframe").style.height=280+'px';
|
|
|
+ parent.document.getElementById(iframeName).style.height=280+'px';
|
|
|
}
|
|
|
}
|
|
|
};
|
|
@@ -452,68 +456,67 @@
|
|
|
url = prefixIndependentRecruitPlan +"/showVerifyDialog/"+id;
|
|
|
}else{
|
|
|
url = prefix+"/showVerifyDialog/"+id
|
|
|
- addTab(url , "查看申报");
|
|
|
- return;
|
|
|
- }
|
|
|
- if(type.toString().indexOf(dec_type.ZPJG) == -1 && rows.length > 1){
|
|
|
- //提示是否需要合并
|
|
|
- layer.confirm("存在多个下属单位的申报,是否需要合并?", {
|
|
|
- icon: 3,
|
|
|
- title: "系统提示",
|
|
|
- btn: ['确认', '取消']
|
|
|
- }, function (index) {
|
|
|
- layer.close(index);
|
|
|
- var array = new Array();
|
|
|
- $.each(rows,function (i,v) {
|
|
|
- if(!$.common.isEmpty(v.createBy)){
|
|
|
- array.push(v.declarationId);
|
|
|
- }
|
|
|
- });
|
|
|
- var url = prefix + "/merge"
|
|
|
- var data = {
|
|
|
- declarationIds: array
|
|
|
- }
|
|
|
- $.operate.submitCustom(url, 'post', "json", data, '', true, 1);
|
|
|
- },function (index) {
|
|
|
- var index = layer.open({
|
|
|
- type: 2,
|
|
|
- area: [window.document.body.clientWidth + 'px', window.document.body.clientHeight + 'px'],
|
|
|
- fix: false,
|
|
|
- //不固定
|
|
|
- //maxmin: true,
|
|
|
- //关闭遮罩
|
|
|
- shade: 0,
|
|
|
- title: "查看申报",
|
|
|
- content: url,
|
|
|
- /*btn: ['关闭'],*/
|
|
|
- // 弹层外区域关闭
|
|
|
- shadeClose: false,
|
|
|
- cancel: function (index,layero) {
|
|
|
- //刷新父页面
|
|
|
- return true;
|
|
|
- }
|
|
|
- });
|
|
|
- });
|
|
|
- }else {
|
|
|
- var index = layer.open({
|
|
|
- type: 2,
|
|
|
- area: [window.document.body.clientWidth + 'px', window.document.body.clientHeight + 'px'],
|
|
|
- fix: false,
|
|
|
- //不固定
|
|
|
- //maxmin: true,
|
|
|
- //关闭遮罩
|
|
|
- shade: 0,
|
|
|
- title: "查看申报",
|
|
|
- content: url,
|
|
|
- /*btn: ['关闭'],*/
|
|
|
- // 弹层外区域关闭
|
|
|
- shadeClose: false,
|
|
|
- cancel: function (index,layero) {
|
|
|
- //刷新父页面
|
|
|
- return true;
|
|
|
- }
|
|
|
- });
|
|
|
}
|
|
|
+ addTab(url , "查看申报");
|
|
|
+ // if(type.toString().indexOf(dec_type.ZPJG) == -1 && rows.length > 1){
|
|
|
+ // //提示是否需要合并
|
|
|
+ // layer.confirm("存在多个下属单位的申报,是否需要合并?", {
|
|
|
+ // icon: 3,
|
|
|
+ // title: "系统提示",
|
|
|
+ // btn: ['确认', '取消']
|
|
|
+ // }, function (index) {
|
|
|
+ // layer.close(index);
|
|
|
+ // var array = new Array();
|
|
|
+ // $.each(rows,function (i,v) {
|
|
|
+ // if(!$.common.isEmpty(v.createBy)){
|
|
|
+ // array.push(v.declarationId);
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ // var url = prefix + "/merge"
|
|
|
+ // var data = {
|
|
|
+ // declarationIds: array
|
|
|
+ // }
|
|
|
+ // $.operate.submitCustom(url, 'post', "json", data, '', true, 1);
|
|
|
+ // },function (index) {
|
|
|
+ // var index = layer.open({
|
|
|
+ // type: 2,
|
|
|
+ // area: [window.document.body.clientWidth + 'px', window.document.body.clientHeight + 'px'],
|
|
|
+ // fix: false,
|
|
|
+ // //不固定
|
|
|
+ // //maxmin: true,
|
|
|
+ // //关闭遮罩
|
|
|
+ // shade: 0,
|
|
|
+ // title: "查看申报",
|
|
|
+ // content: url,
|
|
|
+ // /*btn: ['关闭'],*/
|
|
|
+ // // 弹层外区域关闭
|
|
|
+ // shadeClose: false,
|
|
|
+ // cancel: function (index,layero) {
|
|
|
+ // //刷新父页面
|
|
|
+ // return true;
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ // });
|
|
|
+ // }else {
|
|
|
+ // var index = layer.open({
|
|
|
+ // type: 2,
|
|
|
+ // area: [window.document.body.clientWidth + 'px', window.document.body.clientHeight + 'px'],
|
|
|
+ // fix: false,
|
|
|
+ // //不固定
|
|
|
+ // //maxmin: true,
|
|
|
+ // //关闭遮罩
|
|
|
+ // shade: 0,
|
|
|
+ // title: "查看申报",
|
|
|
+ // content: url,
|
|
|
+ // /*btn: ['关闭'],*/
|
|
|
+ // // 弹层外区域关闭
|
|
|
+ // shadeClose: false,
|
|
|
+ // cancel: function (index,layero) {
|
|
|
+ // //刷新父页面
|
|
|
+ // return true;
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ // }
|
|
|
}
|
|
|
|
|
|
//查看合并的申报
|