style(审批详情页):先将地图隐藏,按需显示
Showing
4 changed files
with
179 additions
and
289 deletions
... | @@ -61,8 +61,7 @@ $(function () { | ... | @@ -61,8 +61,7 @@ $(function () { |
61 | // 去掉tabs | 61 | // 去掉tabs |
62 | if (orign != 'ghsc') { | 62 | if (orign != 'ghsc') { |
63 | $('#isTabs').remove(); | 63 | $('#isTabs').remove(); |
64 | } | 64 | }; |
65 | ; | ||
66 | if (orign === 'ghsc') { | 65 | if (orign === 'ghsc') { |
67 | $("#continueProject").remove(); | 66 | $("#continueProject").remove(); |
68 | $("#createProject").html('<span class="glyphicon glyphicon-download-alt" style="font-size: 15px"></span><a class="bumpbox_white">新建</a>').show(); | 67 | $("#createProject").html('<span class="glyphicon glyphicon-download-alt" style="font-size: 15px"></span><a class="bumpbox_white">新建</a>').show(); | ... | ... |
... | @@ -197,9 +197,9 @@ $(function () { | ... | @@ -197,9 +197,9 @@ $(function () { |
197 | } else if (!taskId && stats == "Manage") { | 197 | } else if (!taskId && stats == "Manage") { |
198 | lookProjectManage(); | 198 | lookProjectManage(); |
199 | } else { | 199 | } else { |
200 | if(stats == "dealedproject"){ | 200 | if (stats == "dealedproject") { |
201 | lookThroughProject(); | 201 | lookThroughProject(); |
202 | }else if (stats == "correctionproject") { | 202 | } else if (stats == "correctionproject") { |
203 | correctionRecordId = _queryParams.correctionRecordId; | 203 | correctionRecordId = _queryParams.correctionRecordId; |
204 | correctionProject(); | 204 | correctionProject(); |
205 | var res = getCorrectionRecord(correctionRecordId); | 205 | var res = getCorrectionRecord(correctionRecordId); |
... | @@ -270,7 +270,7 @@ function uploadBtnNone() { | ... | @@ -270,7 +270,7 @@ function uploadBtnNone() { |
270 | if (temp > -1) { | 270 | if (temp > -1) { |
271 | roleArr = roleIds.split(","); | 271 | roleArr = roleIds.split(","); |
272 | } | 272 | } |
273 | if(_flowId1!='t1001_4028d83970955d2a01709577b3870018'){ | 273 | if (_flowId1 != 't1001_4028d83970955d2a01709577b3870018') { |
274 | return; | 274 | return; |
275 | } | 275 | } |
276 | $.ajax({ | 276 | $.ajax({ |
... | @@ -432,9 +432,11 @@ function initBureau(currentUnitId) { | ... | @@ -432,9 +432,11 @@ function initBureau(currentUnitId) { |
432 | } | 432 | } |
433 | }); | 433 | }); |
434 | } | 434 | } |
435 | |||
435 | var flag = true; | 436 | var flag = true; |
436 | var invFlag; | 437 | var invFlag; |
437 | var invFlag1; | 438 | var invFlag1; |
439 | |||
438 | function initOneMap() { | 440 | function initOneMap() { |
439 | // 初始化地图 | 441 | // 初始化地图 |
440 | initGis(_projectId); | 442 | initGis(_projectId); |
... | @@ -460,38 +462,38 @@ function initOneMap() { | ... | @@ -460,38 +462,38 @@ function initOneMap() { |
460 | } | 462 | } |
461 | // 点击录入坐标 | 463 | // 点击录入坐标 |
462 | $("#AxisMap").attr("disabled", false).click(function () { | 464 | $("#AxisMap").attr("disabled", false).click(function () { |
463 | if(invFlag) { | 465 | if (invFlag) { |
464 | clearTimeout(invFlag) | 466 | clearTimeout(invFlag) |
465 | } | 467 | } |
466 | invFlag = setTimeout(() => { | 468 | invFlag = setTimeout(() => { |
467 | if (_projectId == "") { | 469 | if (_projectId == "") { |
468 | layer.msg("请先保存!", {icon: 2}); | 470 | layer.msg("请先保存!", {icon: 2}); |
469 | } | 471 | } |
470 | if (_projectId) { | 472 | if (_projectId) { |
471 | var openparam = getparam(aloneInputCoord); | 473 | var openparam = getparam(aloneInputCoord); |
472 | var openurl = CONF_GIS_ONEMAP + "?type=SP&state=edit"; | 474 | var openurl = CONF_GIS_ONEMAP + "?type=SP&state=edit"; |
473 | openparam && (openurl += openparam); | 475 | openparam && (openurl += openparam); |
474 | window.open(openurl); | 476 | window.open(openurl); |
475 | } | 477 | } |
476 | }, 500) | 478 | }, 500) |
477 | 479 | ||
478 | }); | 480 | }); |
479 | // 点击查看大图 | 481 | // 点击查看大图 |
480 | $("#MaxMap").attr("disabled", false).click(function () { | 482 | $("#MaxMap").attr("disabled", false).click(function () { |
481 | if(invFlag1) { | 483 | if (invFlag1) { |
482 | clearTimeout(invFlag1) | 484 | clearTimeout(invFlag1) |
483 | } | 485 | } |
484 | invFlag1 = setTimeout(() => { | 486 | invFlag1 = setTimeout(() => { |
485 | if(_projectId == ""){ | 487 | if (_projectId == "") { |
486 | layer.msg("请先保存!", {icon: 2}); | 488 | layer.msg("请先保存!", {icon: 2}); |
487 | } | 489 | } |
488 | if (_projectId) { | 490 | if (_projectId) { |
489 | var openparam = getparam(false); | 491 | var openparam = getparam(false); |
490 | var openurl = CONF_GIS_ONEMAP + "?type=SP&state=disabled"; | 492 | var openurl = CONF_GIS_ONEMAP + "?type=SP&state=disabled"; |
491 | openparam && (openurl += openparam); | 493 | openparam && (openurl += openparam); |
492 | window.open(openurl); | 494 | window.open(openurl); |
493 | } | 495 | } |
494 | }, 500) | 496 | }, 500) |
495 | }); | 497 | }); |
496 | //刷新 | 498 | //刷新 |
497 | $("#RefreshMap").click(function () { | 499 | $("#RefreshMap").click(function () { |
... | @@ -1199,7 +1201,7 @@ function lookThroughProject() { | ... | @@ -1199,7 +1201,7 @@ function lookThroughProject() { |
1199 | console.log("查询当前流程的所有环节失败"); | 1201 | console.log("查询当前流程的所有环节失败"); |
1200 | } | 1202 | } |
1201 | }); | 1203 | }); |
1202 | if (_flowId=='t1001_4028d83970955d2a01709577b3870018') {//判断是不是数据申请流程 | 1204 | if (_flowId == 't1001_4028d83970955d2a01709577b3870018') {//判断是不是数据申请流程 |
1203 | rootPath = project.attachpath; | 1205 | rootPath = project.attachpath; |
1204 | loadMaterialsNew(res.data); | 1206 | loadMaterialsNew(res.data); |
1205 | $("#project_saveSuggest").css("display", "none"); | 1207 | $("#project_saveSuggest").css("display", "none"); |
... | @@ -1376,10 +1378,10 @@ function dealingProject() { | ... | @@ -1376,10 +1378,10 @@ function dealingProject() { |
1376 | console.log("查询当前流程的所有环节失败"); | 1378 | console.log("查询当前流程的所有环节失败"); |
1377 | } | 1379 | } |
1378 | }); | 1380 | }); |
1379 | if(_flowId=='t1001_4028d83970955d2a01709577b3870018'){ | 1381 | if (_flowId == 't1001_4028d83970955d2a01709577b3870018') { |
1380 | rootPath = project.attachpath; | 1382 | rootPath = project.attachpath; |
1381 | loadMaterialsNew(flowObjectName); | 1383 | loadMaterialsNew(flowObjectName); |
1382 | }else if (_flowId == 't1001_4028d839710f68d101710f8b74ad0006'){ | 1384 | } else if (_flowId == 't1001_4028d839710f68d101710f8b74ad0006') { |
1383 | rootPath = project.attachpath; | 1385 | rootPath = project.attachpath; |
1384 | loadAttach(project.attachpath, data.projectMaterialDirList);//加载附件 | 1386 | loadAttach(project.attachpath, data.projectMaterialDirList);//加载附件 |
1385 | } | 1387 | } |
... | @@ -4897,50 +4899,6 @@ function returned() { | ... | @@ -4897,50 +4899,6 @@ function returned() { |
4897 | } | 4899 | } |
4898 | }); | 4900 | }); |
4899 | } | 4901 | } |
4900 | |||
4901 | |||
4902 | /*function loadDockinglSystemData(flowid, _dockingid) { | ||
4903 | $.ajax({ | ||
4904 | type: "POST", | ||
4905 | url: CONF_DOCKINGSYSTEM_SERVERURL + '/xiangj/resource/get', | ||
4906 | data: {'sxslbm': _dockingid, 'flowid': flowid}, | ||
4907 | dataType: 'json', | ||
4908 | success: function (result) { | ||
4909 | if (result.status == 'ok') { | ||
4910 | dataList.map = result.data; | ||
4911 | } else { | ||
4912 | _dockingid = 'error' | ||
4913 | console.log(result.message); | ||
4914 | } | ||
4915 | }, | ||
4916 | error: function (e) { | ||
4917 | console.log(e); | ||
4918 | _dockingid = 'error'; | ||
4919 | } | ||
4920 | }); | ||
4921 | }*/ | ||
4922 | |||
4923 | /*function getSxbmByProjectid(projectid) { | ||
4924 | var thisfm = this; | ||
4925 | $.ajax({ | ||
4926 | type: "POST", | ||
4927 | url: CONF_DOCKINGSYSTEM_SERVERURL + '/xiangj/resource/getSxbmByProjectid', | ||
4928 | data: {'projectid': projectid}, | ||
4929 | dataType: 'json', | ||
4930 | success: function (result) { | ||
4931 | if (result.status == 'ok') { | ||
4932 | _dockingid = result.data; | ||
4933 | } else { | ||
4934 | _dockingid = 'error'; | ||
4935 | } | ||
4936 | }, | ||
4937 | error: function (e) { | ||
4938 | console.log(e); | ||
4939 | _dockingid = 'error'; | ||
4940 | } | ||
4941 | }); | ||
4942 | }*/ | ||
4943 | |||
4944 | function validateMaterialRequired() { | 4902 | function validateMaterialRequired() { |
4945 | var isRe = {flag: false, message: '效验成功'}; | 4903 | var isRe = {flag: false, message: '效验成功'}; |
4946 | 4904 | ||
... | @@ -5047,7 +5005,8 @@ function displayBlock(nodeName, _projerct, _flage) { | ... | @@ -5047,7 +5005,8 @@ function displayBlock(nodeName, _projerct, _flage) { |
5047 | } | 5005 | } |
5048 | }); | 5006 | }); |
5049 | //flag 已办结 | 5007 | //flag 已办结 |
5050 | if (version && version.indexOf('1.0') > -1) {//判断是不是规划审查流程 | 5008 | if (version && version.indexOf('1.0') > -1) { |
5009 | //判断是不是规划审查流程 | ||
5051 | // FIXME: 申请环节为新增流程 申请数据流程 | 5010 | // FIXME: 申请环节为新增流程 申请数据流程 |
5052 | if (hjArr.includes(flowObjectId)) { | 5011 | if (hjArr.includes(flowObjectId)) { |
5053 | if (_flowId == 't1001_4028d83970955d2a01709577b3870018') {//判断是不是成果审查流程 | 5012 | if (_flowId == 't1001_4028d83970955d2a01709577b3870018') {//判断是不是成果审查流程 |
... | @@ -5077,7 +5036,7 @@ function displayBlock(nodeName, _projerct, _flage) { | ... | @@ -5077,7 +5036,7 @@ function displayBlock(nodeName, _projerct, _flage) { |
5077 | } | 5036 | } |
5078 | } | 5037 | } |
5079 | }); | 5038 | }); |
5080 | if(lcyj.length>0){ | 5039 | if (lcyj.length > 0) { |
5081 | var _width = $("#project_suggest_div").width(); | 5040 | var _width = $("#project_suggest_div").width(); |
5082 | $("#project_suggest_div").css({ | 5041 | $("#project_suggest_div").css({ |
5083 | "display": "flex", | 5042 | "display": "flex", |
... | @@ -5107,6 +5066,8 @@ function displayBlock(nodeName, _projerct, _flage) { | ... | @@ -5107,6 +5066,8 @@ function displayBlock(nodeName, _projerct, _flage) { |
5107 | $('#project_saveSuggest').off('click').on('click', function () { | 5066 | $('#project_saveSuggest').off('click').on('click', function () { |
5108 | saveSuggest($('#project_textarea_cs').val()); | 5067 | saveSuggest($('#project_textarea_cs').val()); |
5109 | }); | 5068 | }); |
5069 | }else { | ||
5070 | $("#browsingGrp").css('display', 'inline-block'); | ||
5110 | } | 5071 | } |
5111 | 5072 | ||
5112 | if (_flowId == 't1001_4028d839710f68d101710f8b74ad0006') {//判断是不是数据申请流程 | 5073 | if (_flowId == 't1001_4028d839710f68d101710f8b74ad0006') {//判断是不是数据申请流程 |
... | @@ -5126,7 +5087,7 @@ function displayBlock(nodeName, _projerct, _flage) { | ... | @@ -5126,7 +5087,7 @@ function displayBlock(nodeName, _projerct, _flage) { |
5126 | */ | 5087 | */ |
5127 | else if (version && version.indexOf('2.0') > -1) {//判断是不是业务协同模块 | 5088 | else if (version && version.indexOf('2.0') > -1) {//判断是不是业务协同模块 |
5128 | initOneMap(); | 5089 | initOneMap(); |
5129 | var arr1=['sid-862DE529-CECB-4360-ABDB-CFA518A0907F','sid-1CC0CEE0-D6C2-461A-807B-2361D0E8BC54','sid-2D676B0B-FBF0-42E3-9A8C-7860614DAF7A']; | 5090 | var arr1 = ['sid-862DE529-CECB-4360-ABDB-CFA518A0907F', 'sid-1CC0CEE0-D6C2-461A-807B-2361D0E8BC54', 'sid-2D676B0B-FBF0-42E3-9A8C-7860614DAF7A']; |
5130 | $("#form_div").children('div:first-child').css('margin-top', '0'); | 5091 | $("#form_div").children('div:first-child').css('margin-top', '0'); |
5131 | //FIXME:wei | 5092 | //FIXME:wei |
5132 | //如果环节id 等于流程环节启动id | 5093 | //如果环节id 等于流程环节启动id |
... | @@ -5141,29 +5102,29 @@ function displayBlock(nodeName, _projerct, _flage) { | ... | @@ -5141,29 +5102,29 @@ function displayBlock(nodeName, _projerct, _flage) { |
5141 | lcyj = res.data; | 5102 | lcyj = res.data; |
5142 | } | 5103 | } |
5143 | }); | 5104 | }); |
5144 | if(detailType != undefined){ | 5105 | if (detailType != undefined) { |
5145 | if(detailType == "1"){ | 5106 | if (detailType == "1") { |
5146 | if(flowObjectId == startTaskId){ | 5107 | if (flowObjectId == startTaskId) { |
5147 | $('#project_cl,#formPanel,#project_div_attachment,#form_div,#browsingGrp,#hint,#pro_btn_group_div').css('display', 'inline-block'); | 5108 | $('#project_cl,#formPanel,#project_div_attachment,#form_div,#browsingGrp,#hint,#pro_btn_group_div').css('display', 'inline-block'); |
5148 | }else{ | 5109 | } else { |
5149 | $('#ywxt_right,#project_cl,#formPanel,#project_div_attachment,#form_div,#browsingGrp,#hint,#pro_btn_group_div').css('display', 'inline-block'); | 5110 | $('#ywxt_right,#project_cl,#formPanel,#project_div_attachment,#form_div,#browsingGrp,#hint,#pro_btn_group_div').css('display', 'inline-block'); |
5150 | } | 5111 | } |
5151 | } | 5112 | } |
5152 | if(detailType == "2"){ | 5113 | if (detailType == "2") { |
5153 | if (lcyj.length > 0) { | 5114 | if (lcyj.length > 0) { |
5154 | $('#ywxt_right,#project_cl,#formPanel,#project_div_attachment,#form_div,#browsingGrp,#hint,#pro_btn_group_div').css('display', 'inline-block'); | 5115 | $('#ywxt_right,#project_cl,#formPanel,#project_div_attachment,#form_div,#browsingGrp,#hint,#pro_btn_group_div').css('display', 'inline-block'); |
5155 | } else { | 5116 | } else { |
5156 | $('#project_cl,#formPanel,#project_div_attachment,#form_div,#browsingGrp,#hint,#pro_btn_group_div').css('display', 'inline-block'); | 5117 | $('#project_cl,#formPanel,#project_div_attachment,#form_div,#browsingGrp,#hint,#pro_btn_group_div').css('display', 'inline-block'); |
5157 | } | 5118 | } |
5158 | } | 5119 | } |
5159 | }else{ | 5120 | } else { |
5160 | $('#project_cl,#formPanel,#project_div_attachment,#form_div,#browsingGrp,#hint,#pro_btn_group_div').css('display', 'inline-block'); | 5121 | $('#project_cl,#formPanel,#project_div_attachment,#form_div,#browsingGrp,#hint,#pro_btn_group_div').css('display', 'inline-block'); |
5161 | } | 5122 | } |
5162 | $("#createFolder,#uploadFile").show(); | 5123 | $("#createFolder,#uploadFile").show(); |
5163 | isTypeInreference = true; | 5124 | isTypeInreference = true; |
5164 | //$('#ywxt_right,#project_cl,#formPanel,#project_div_attachment,#form_div,#browsingGrp,#hint,#pro_btn_group_div button').css('display', 'inline-block'); | 5125 | //$('#ywxt_right,#project_cl,#formPanel,#project_div_attachment,#form_div,#browsingGrp,#hint,#pro_btn_group_div button').css('display', 'inline-block'); |
5165 | if(_flowId=="t1001_4028d8397114eb4501713455a38d3544"){ | 5126 | if (_flowId == "t1001_4028d8397114eb4501713455a38d3544") { |
5166 | if(arr1.includes(flowObjectId)){ | 5127 | if (arr1.includes(flowObjectId)) { |
5167 | $("#pro_ywxt_csyj").remove(); | 5128 | $("#pro_ywxt_csyj").remove(); |
5168 | $("#project_ywxt_textarea_cs").remove(); | 5129 | $("#project_ywxt_textarea_cs").remove(); |
5169 | $("#project_ywxt_saveSuggest").remove(); | 5130 | $("#project_ywxt_saveSuggest").remove(); |
... | @@ -5197,40 +5158,9 @@ function displayBlock(nodeName, _projerct, _flage) { | ... | @@ -5197,40 +5158,9 @@ function displayBlock(nodeName, _projerct, _flage) { |
5197 | } | 5158 | } |
5198 | suggestFun1(nodeName); | 5159 | suggestFun1(nodeName); |
5199 | } | 5160 | } |
5200 | } | 5161 | else { |
5201 | 5162 | $("#browsingGrp").css('display', 'inline-block'); | |
5202 | /* | 5163 | } |
5203 | // load Fs module | ||
5204 | function cgsbjdxx(_id) { | ||
5205 | layui.use('laytpl', function () { | ||
5206 | var laytpl = layui.laytpl; | ||
5207 | |||
5208 | if (!_id) { | ||
5209 | layer.msg("未查询到进度信息!"); | ||
5210 | return false; | ||
5211 | } | ||
5212 | // 联调 $(').html() | ||
5213 | $.ajax({ | ||
5214 | type: "POST", | ||
5215 | url: CONF_NEWGHSC_SERVERURL + '/bz/getZblcXx?id=' + _id, | ||
5216 | data: '', | ||
5217 | dataType: 'json', | ||
5218 | success: function (res) { | ||
5219 | console.log(res) | ||
5220 | if (res.code == 200) { | ||
5221 | //直接解析字符 | ||
5222 | laytpl($("#projectCgsbJdxx").html()).render(res.data, function (_html) { | ||
5223 | $("#project_jdxx ul.layui-timeline").html(_html); | ||
5224 | }); | ||
5225 | } else { | ||
5226 | layer.msg('error'); | ||
5227 | } | ||
5228 | }, | ||
5229 | error: function (e) { | ||
5230 | layer.msg('error'); | ||
5231 | } | ||
5232 | }); | ||
5233 | }); | ||
5234 | } | 5164 | } |
5235 | 5165 | ||
5236 | /** | 5166 | /** |
... | @@ -5367,34 +5297,34 @@ function qualityInspection() { | ... | @@ -5367,34 +5297,34 @@ function qualityInspection() { |
5367 | layer.msg('请先保存项目!'); | 5297 | layer.msg('请先保存项目!'); |
5368 | return; | 5298 | return; |
5369 | } | 5299 | } |
5370 | if(fileListBack == null){ | 5300 | if (fileListBack == null) { |
5371 | layer.msg('请先导入成果包!'); | 5301 | layer.msg('请先导入成果包!'); |
5372 | return; | 5302 | return; |
5373 | } | 5303 | } |
5374 | var data = window.formMgr.getDataJson(); | 5304 | var data = window.formMgr.getDataJson(); |
5375 | var formData = JSON.parse(data); | 5305 | var formData = JSON.parse(data); |
5376 | var xmlx = formData.XM.XMLX; | 5306 | var xmlx = formData.XM.XMLX; |
5377 | if(xmlx == null || xmlx == "" || xmlx == undefined || xmlx == "请选择"){ | 5307 | if (xmlx == null || xmlx == "" || xmlx == undefined || xmlx == "请选择") { |
5378 | layer.msg("基本信息-规划类型不能为空"); | 5308 | layer.msg("基本信息-规划类型不能为空"); |
5379 | return; | 5309 | return; |
5380 | } | 5310 | } |
5381 | var ghjb = formData.XM.GHJB; | 5311 | var ghjb = formData.XM.GHJB; |
5382 | if(ghjb == null || ghjb == "" || ghjb == undefined || ghjb == "请选择"){ | 5312 | if (ghjb == null || ghjb == "" || ghjb == undefined || ghjb == "请选择") { |
5383 | layer.msg("基本信息-规划级别不能为空"); | 5313 | layer.msg("基本信息-规划级别不能为空"); |
5384 | return; | 5314 | return; |
5385 | } | 5315 | } |
5386 | var xmmc = formData.XM.XMMC; | 5316 | var xmmc = formData.XM.XMMC; |
5387 | if(xmmc == null || xmmc == "" || xmmc == undefined){ | 5317 | if (xmmc == null || xmmc == "" || xmmc == undefined) { |
5388 | layer.msg("基本信息-规划名称不能为空"); | 5318 | layer.msg("基本信息-规划名称不能为空"); |
5389 | return; | 5319 | return; |
5390 | } | 5320 | } |
5391 | var ghqx = formData.XM.GHQX; | 5321 | var ghqx = formData.XM.GHQX; |
5392 | if(ghqx == null || ghqx == "" || ghqx == undefined){ | 5322 | if (ghqx == null || ghqx == "" || ghqx == undefined) { |
5393 | layer.msg("基本信息-规划期限不能为空"); | 5323 | layer.msg("基本信息-规划期限不能为空"); |
5394 | return; | 5324 | return; |
5395 | } | 5325 | } |
5396 | var bsrq = formData.CG_LS.BSRQ; | 5326 | var bsrq = formData.CG_LS.BSRQ; |
5397 | if(bsrq == null || bsrq == "" || bsrq == undefined){ | 5327 | if (bsrq == null || bsrq == "" || bsrq == undefined) { |
5398 | layer.msg("版本信息-报送日期不能为空"); | 5328 | layer.msg("版本信息-报送日期不能为空"); |
5399 | return; | 5329 | return; |
5400 | } | 5330 | } |
... | @@ -5693,93 +5623,93 @@ function dTreeInit1(_id, _initData, _fn, _optFn) { | ... | @@ -5693,93 +5623,93 @@ function dTreeInit1(_id, _initData, _fn, _optFn) { |
5693 | setTimeout(() => { | 5623 | setTimeout(() => { |
5694 | // 若dtree资源没有加载 重载页面 | 5624 | // 若dtree资源没有加载 重载页面 |
5695 | if (dtree == null) { | 5625 | if (dtree == null) { |
5696 | location.reload(); | 5626 | location.reload(); |
5697 | } | 5627 | } |
5698 | DemoTree = dtree.render({ | 5628 | DemoTree = dtree.render({ |
5699 | elem: `#${_id}`, | 5629 | elem: `#${_id}`, |
5700 | iconfontStyle: [{ | 5630 | iconfontStyle: [{ |
5701 | fnode: { //一级节点 | 5631 | fnode: { //一级节点 |
5702 | node: { //非叶子节点 | 5632 | node: { //非叶子节点 |
5703 | open: "dtree-icon-xiangxia1", //节点展开 | 5633 | open: "dtree-icon-xiangxia1", //节点展开 |
5704 | close: "dtree-icon-xiangyou" //节点关闭 | 5634 | close: "dtree-icon-xiangyou" //节点关闭 |
5635 | }, | ||
5636 | leaf: "dtree-icon-null" //叶子节点 | ||
5705 | }, | 5637 | }, |
5706 | leaf: "dtree-icon-null" //叶子节点 | 5638 | snode: { //二级节点 |
5707 | }, | 5639 | node: { //非叶子节点 |
5708 | snode: { //二级节点 | 5640 | open: "dtree-icon-null top-icon", //节点展开 |
5709 | node: { //非叶子节点 | 5641 | close: "dtree-icon-weibiaoti5" //节点关闭 |
5710 | open: "dtree-icon-null top-icon", //节点展开 | 5642 | }, |
5711 | close: "dtree-icon-weibiaoti5" //节点关闭 | 5643 | leaf: "dtree-icon-null top-icon-bottom" //叶子节点 |
5712 | }, | 5644 | }, |
5713 | leaf: "dtree-icon-null top-icon-bottom" //叶子节点 | 5645 | }], |
5714 | }, | 5646 | toolbar: true, |
5715 | }], | 5647 | toolbarWay: "follow", // "contextmenu":右键菜单(默认),"fixed":"固定在节点后","follow":"跟随节点动态呈现" |
5716 | toolbar: true, | 5648 | skin: "zdy", |
5717 | toolbarWay: "follow", // "contextmenu":右键菜单(默认),"fixed":"固定在节点后","follow":"跟随节点动态呈现" | 5649 | toolbarShow: [], |
5718 | skin: "zdy", | 5650 | toolbarFun: { |
5719 | toolbarShow: [], | 5651 | loadToolbarBefore: function (buttons, param, $div) { |
5720 | toolbarFun: { | 5652 | buttons.addToolbar = "<a title='下载文件' data-id=" + param.nodeId + " data-node='download' class='dtree-optbtn' style='padding-left: 5px;'><i class='dtreefont'><img src='/frontweb/image/projecttask/download.png'></img></a>"; // 取消新增功能 |
5721 | loadToolbarBefore: function (buttons, param, $div) { | 5653 | if (param.leaf) { |
5722 | buttons.addToolbar = "<a title='下载文件' data-id=" + param.nodeId + " data-node='download' class='dtree-optbtn' style='padding-left: 5px;'><i class='dtreefont'><img src='/frontweb/image/projecttask/download.png'></img></a>"; // 取消新增功能 | 5654 | // 叶节点 |
5723 | if (param.leaf) { | 5655 | // TODO:具体限制文件格式需修改 |
5724 | // 叶节点 | 5656 | if (param.context.indexOf('.pdf') > 0 || param.context.indexOf('.png') > 0 || param.context.indexOf('.jpg') > 0) { |
5725 | // TODO:具体限制文件格式需修改 | 5657 | buttons.addToolbar = "" + |
5726 | if (param.context.indexOf('.pdf') > 0 || param.context.indexOf('.png') > 0 || param.context.indexOf('.jpg') > 0) { | 5658 | "<a title='预览文件' data-id=" + param.nodeId + " data-node='view' class='dtree-optbtn' style='padding-left: 5px;'>" + |
5727 | buttons.addToolbar = "" + | 5659 | "<i class='dtreefont'>" + "<img src='/frontweb/image/projecttask/view.png'></img></a>" + |
5728 | "<a title='预览文件' data-id=" + param.nodeId + " data-node='view' class='dtree-optbtn' style='padding-left: 5px;'>" + | 5660 | "<a title='下载文件' data-id=" + param.nodeId + " data-node='download' class='dtree-optbtn' style='padding-left: 5px;'>" + |
5729 | "<i class='dtreefont'>" + "<img src='/frontweb/image/projecttask/view.png'></img></a>" + | 5661 | "<i class='dtreefont'><img src='/frontweb/image/projecttask/download.png'></img></a>" + |
5730 | "<a title='下载文件' data-id=" + param.nodeId + " data-node='download' class='dtree-optbtn' style='padding-left: 5px;'>" + | 5662 | "<a title='删除文件' data-id=" + param.nodeId + " data-node='delete' class='dtree-optbtn' style='padding-left: 5px;'>" + |
5731 | "<i class='dtreefont'><img src='/frontweb/image/projecttask/download.png'></img></a>" + | 5663 | "<i class='dtreefont'><img src='/frontweb/image/projecttask/delete.png'></img></a>"; |
5732 | "<a title='删除文件' data-id=" + param.nodeId + " data-node='delete' class='dtree-optbtn' style='padding-left: 5px;'>" + | 5664 | } else { |
5733 | "<i class='dtreefont'><img src='/frontweb/image/projecttask/delete.png'></img></a>"; | 5665 | buttons.addToolbar = "" + |
5734 | } else { | 5666 | "<a title='下载文件' data-id=" + param.nodeId + " data-node='download' class='dtree-optbtn' style='padding-left: 5px;'>" + |
5667 | "<i class='dtreefont'><img src='/frontweb/image/projecttask/download.png'></img></a>" + | ||
5668 | "<a title='删除文件' data-id=" + param.nodeId + " data-node='delete' class='dtree-optbtn' style='padding-left: 5px;'>" + | ||
5669 | "<i class='dtreefont'><img src='/frontweb/image/projecttask/delete.png'></img></a>"; | ||
5670 | } | ||
5671 | } else if (param.name !== '根目录' && param.level != '1') { | ||
5735 | buttons.addToolbar = "" + | 5672 | buttons.addToolbar = "" + |
5736 | "<a title='下载文件' data-id=" + param.nodeId + " data-node='download' class='dtree-optbtn' style='padding-left: 5px;'>" + | 5673 | "<a title='下载文件' data-id=" + param.nodeId + " data-node='download' class='dtree-optbtn' style='padding-left: 5px;'>" + |
5737 | "<i class='dtreefont'><img src='/frontweb/image/projecttask/download.png'></img></a>" + | 5674 | "<i class='dtreefont'><img src='/frontweb/image/projecttask/download.png'></img></a>" + |
5738 | "<a title='删除文件' data-id=" + param.nodeId + " data-node='delete' class='dtree-optbtn' style='padding-left: 5px;'>" + | 5675 | "<a title='删除文件' data-id=" + param.nodeId + " data-node='delete' class='dtree-optbtn' style='padding-left: 5px;'>" + |
5739 | "<i class='dtreefont'><img src='/frontweb/image/projecttask/delete.png'></img></a>"; | 5676 | "<i class='dtreefont'><img src='/frontweb/image/projecttask/delete.png'></img></a>"; |
5740 | } | 5677 | } |
5741 | } else if (param.name !== '根目录' && param.level != '1') { | 5678 | return buttons; // 将按钮对象返回 |
5742 | buttons.addToolbar = "" + | 5679 | }, |
5743 | "<a title='下载文件' data-id=" + param.nodeId + " data-node='download' class='dtree-optbtn' style='padding-left: 5px;'>" + | ||
5744 | "<i class='dtreefont'><img src='/frontweb/image/projecttask/download.png'></img></a>" + | ||
5745 | "<a title='删除文件' data-id=" + param.nodeId + " data-node='delete' class='dtree-optbtn' style='padding-left: 5px;'>" + | ||
5746 | "<i class='dtreefont'><img src='/frontweb/image/projecttask/delete.png'></img></a>"; | ||
5747 | } | ||
5748 | return buttons; // 将按钮对象返回 | ||
5749 | }, | 5680 | }, |
5750 | }, | 5681 | data: _initData, |
5751 | data: _initData, | 5682 | none: "暂无数据", |
5752 | none: "暂无数据", | 5683 | done: function (res, $ul, first) { |
5753 | done: function (res, $ul, first) { | 5684 | if (first) { |
5754 | if (first) { | 5685 | dtreePointer = res[0]; |
5755 | dtreePointer = res[0]; | 5686 | } |
5756 | } | 5687 | } |
5757 | } | 5688 | }); |
5758 | }); | ||
5759 | 5689 | ||
5760 | // 绑定节点点击 | 5690 | // 绑定节点点击 |
5761 | 5691 | ||
5762 | 5692 | ||
5763 | dtree.on(`node('${_id}')`, (obj, e) =>{ | 5693 | dtree.on(`node('${_id}')`, (obj, e) => { |
5764 | if (typeof _fn === 'function') { | 5694 | if (typeof _fn === 'function') { |
5765 | _fn(obj.param); | 5695 | _fn(obj.param); |
5766 | } | ||
5767 | }); | ||
5768 | |||
5769 | if (typeof _optFn === 'function') { | ||
5770 | $(`#${_id}`).on('click', '.dtree-optbtn', function (e) { | ||
5771 | if (e.stopPropagation) { | ||
5772 | e.stopPropagation() | ||
5773 | e.stopPropagation() | ||
5774 | e.stopPropagation() | ||
5775 | e.stopPropagation() | ||
5776 | } else { | ||
5777 | e.cancelBubble = true; | ||
5778 | } | 5696 | } |
5779 | _optFn.call(this, dtree.getParam(`${_id}`, $(this).data('id')), $(this).data('node')); | 5697 | }); |
5780 | }) | 5698 | |
5781 | } | 5699 | if (typeof _optFn === 'function') { |
5782 | }, 500); | 5700 | $(`#${_id}`).on('click', '.dtree-optbtn', function (e) { |
5701 | if (e.stopPropagation) { | ||
5702 | e.stopPropagation() | ||
5703 | e.stopPropagation() | ||
5704 | e.stopPropagation() | ||
5705 | e.stopPropagation() | ||
5706 | } else { | ||
5707 | e.cancelBubble = true; | ||
5708 | } | ||
5709 | _optFn.call(this, dtree.getParam(`${_id}`, $(this).data('id')), $(this).data('node')); | ||
5710 | }) | ||
5711 | } | ||
5712 | }, 500); | ||
5783 | } | 5713 | } |
5784 | 5714 | ||
5785 | /* | 5715 | /* |
... | @@ -5906,34 +5836,34 @@ function loadMaterialsNew(nodeName, rename) { | ... | @@ -5906,34 +5836,34 @@ function loadMaterialsNew(nodeName, rename) { |
5906 | } | 5836 | } |
5907 | 5837 | ||
5908 | parent.imgArrSrc = []; | 5838 | parent.imgArrSrc = []; |
5909 | let _data =fjDataFormat([res.data[0]]); | 5839 | let _data = fjDataFormat([res.data[0]]); |
5910 | //_data = fjDataFormat([res.data[0]]); | 5840 | //_data = fjDataFormat([res.data[0]]); |
5911 | dTreeInit('project_fjTree', _data, res => { | 5841 | dTreeInit('project_fjTree', _data, res => { |
5912 | // 点击附件查看附件预览 | 5842 | // 点击附件查看附件预览 |
5913 | // if (version && version.indexOf('1.0') > -1) { | 5843 | // if (version && version.indexOf('1.0') > -1) { |
5914 | // if (nodeName.indexOf('初审') > -1) { | 5844 | // if (nodeName.indexOf('初审') > -1) { |
5915 | // layer.open({ | 5845 | // layer.open({ |
5916 | // id: res.nodeId, | 5846 | // id: res.nodeId, |
5917 | // type: 2, | 5847 | // type: 2, |
5918 | // area: ['1000px', '750px'], | 5848 | // area: ['1000px', '750px'], |
5919 | // fixed: false, //不固定 | 5849 | // fixed: false, //不固定 |
5920 | // maxmin: true, | 5850 | // maxmin: true, |
5921 | // content: '/frontweb/view/reviewmanage/resultreview/widgets/Review/Review/images/XXXXXX县国土空间规划成果初审报告.pdf' | 5851 | // content: '/frontweb/view/reviewmanage/resultreview/widgets/Review/Review/images/XXXXXX县国土空间规划成果初审报告.pdf' |
5922 | // }); | 5852 | // }); |
5923 | // } | 5853 | // } |
5924 | // } | 5854 | // } |
5925 | }, | 5855 | }, |
5926 | (resOpt, _opt) => { | 5856 | (resOpt, _opt) => { |
5927 | 5857 | ||
5928 | 5858 | ||
5929 | if (_opt === 'view') { | 5859 | if (_opt === 'view') { |
5930 | preview2({filename: resOpt.basicData.path}); | 5860 | preview2({filename: resOpt.basicData.path}); |
5931 | } else if (_opt === 'download') { | 5861 | } else if (_opt === 'download') { |
5932 | downloadfile2({filename: resOpt.basicData.path}, window.event || arguments.callee.caller.arguments[0]); | 5862 | downloadfile2({filename: resOpt.basicData.path}, window.event || arguments.callee.caller.arguments[0]); |
5933 | } else if (_opt === 'delete') { | 5863 | } else if (_opt === 'delete') { |
5934 | deletefile2(resOpt.context, resOpt.basicData.isDir, 'origin', window.event || arguments.callee.caller.arguments[0], resOpt.nodeId); | 5864 | deletefile2(resOpt.context, resOpt.basicData.isDir, 'origin', window.event || arguments.callee.caller.arguments[0], resOpt.nodeId); |
5935 | } | 5865 | } |
5936 | }); | 5866 | }); |
5937 | /*let data1 = fjDataFormat([res.data[1]]); | 5867 | /*let data1 = fjDataFormat([res.data[1]]); |
5938 | dTreeInit1('project_bgTree', data1, res => { | 5868 | dTreeInit1('project_bgTree', data1, res => { |
5939 | }, (resOpt, _opt) => { | 5869 | }, (resOpt, _opt) => { |
... | @@ -5945,7 +5875,7 @@ function loadMaterialsNew(nodeName, rename) { | ... | @@ -5945,7 +5875,7 @@ function loadMaterialsNew(nodeName, rename) { |
5945 | deletefile2(resOpt.context, resOpt.basicData.isDir, 'origin', window.event || arguments.callee.caller.arguments[0], resOpt.nodeId); | 5875 | deletefile2(resOpt.context, resOpt.basicData.isDir, 'origin', window.event || arguments.callee.caller.arguments[0], resOpt.nodeId); |
5946 | } | 5876 | } |
5947 | });*/ | 5877 | });*/ |
5948 | if(res.data.length>1){ | 5878 | if (res.data.length > 1) { |
5949 | let data1 = fjDataFormat([res.data[1]]); | 5879 | let data1 = fjDataFormat([res.data[1]]); |
5950 | $("#noAttachment1").hide(); | 5880 | $("#noAttachment1").hide(); |
5951 | dTreeInit1('project_bgTree', data1, res => { | 5881 | dTreeInit1('project_bgTree', data1, res => { |
... | @@ -6404,13 +6334,15 @@ function saveSuggest(yjnr) { | ... | @@ -6404,13 +6334,15 @@ function saveSuggest(yjnr) { |
6404 | $.ajax({ | 6334 | $.ajax({ |
6405 | type: "POST", | 6335 | type: "POST", |
6406 | url: CONF_NEWGHSC_SERVERURL + '/ghsc/createScYjReport', | 6336 | url: CONF_NEWGHSC_SERVERURL + '/ghsc/createScYjReport', |
6407 | data: JSON.stringify({flowObjectId:flowObjectId, | 6337 | data: JSON.stringify({ |
6408 | userId:userid, | 6338 | flowObjectId: flowObjectId, |
6409 | userName:username, | 6339 | userId: userid, |
6410 | pid:_projectId}), | 6340 | userName: username, |
6341 | pid: _projectId | ||
6342 | }), | ||
6411 | dataType: 'json', | 6343 | dataType: 'json', |
6412 | contentType: "application/json;charset=UTF-8", | 6344 | contentType: "application/json;charset=UTF-8", |
6413 | async:false, | 6345 | async: false, |
6414 | success: function (res) { | 6346 | success: function (res) { |
6415 | if (res.code == 200) { | 6347 | if (res.code == 200) { |
6416 | layer.msg(res.msg); | 6348 | layer.msg(res.msg); |
... | @@ -6782,11 +6714,11 @@ function isTypeIn() { | ... | @@ -6782,11 +6714,11 @@ function isTypeIn() { |
6782 | $.ajax({ | 6714 | $.ajax({ |
6783 | type: "POST", | 6715 | type: "POST", |
6784 | url: CONF_GIS_ONEMAP + "projectMap/getProjectMapAndProjectLayerOne", | 6716 | url: CONF_GIS_ONEMAP + "projectMap/getProjectMapAndProjectLayerOne", |
6785 | data:JSON.stringify(param), | 6717 | data: JSON.stringify(param), |
6786 | contentType: 'application/json', | 6718 | contentType: 'application/json', |
6787 | async: false, | 6719 | async: false, |
6788 | success: function (res) { | 6720 | success: function (res) { |
6789 | if (res!= null&&res!="") { | 6721 | if (res != null && res != "") { |
6790 | return resolve(true) | 6722 | return resolve(true) |
6791 | } | 6723 | } |
6792 | return reject(false) | 6724 | return reject(false) |
... | @@ -6923,14 +6855,14 @@ async function sendClickBefore() { | ... | @@ -6923,14 +6855,14 @@ async function sendClickBefore() { |
6923 | }); | 6855 | }); |
6924 | if (_flowId == 't1001_4028d83970955d2a01709577b3870018') { | 6856 | if (_flowId == 't1001_4028d83970955d2a01709577b3870018') { |
6925 | if (flowObjectId == startTaskId) { | 6857 | if (flowObjectId == startTaskId) { |
6926 | if(!quality){ | 6858 | if (!quality) { |
6927 | layer.msg('您还没有进行一键质检'); | 6859 | layer.msg('您还没有进行一键质检'); |
6928 | return false; | 6860 | return false; |
6929 | } | 6861 | } |
6930 | } | 6862 | } |
6931 | } | 6863 | } |
6932 | 6864 | ||
6933 | var arr1=['sid-862DE529-CECB-4360-ABDB-CFA518A0907F','sid-1CC0CEE0-D6C2-461A-807B-2361D0E8BC54','sid-2D676B0B-FBF0-42E3-9A8C-7860614DAF7A']; | 6865 | var arr1 = ['sid-862DE529-CECB-4360-ABDB-CFA518A0907F', 'sid-1CC0CEE0-D6C2-461A-807B-2361D0E8BC54', 'sid-2D676B0B-FBF0-42E3-9A8C-7860614DAF7A']; |
6934 | var flowId1 = 't1001_4028d839710f68d101710f8b74ad0006' | 6866 | var flowId1 = 't1001_4028d839710f68d101710f8b74ad0006' |
6935 | var hjArr = []; | 6867 | var hjArr = []; |
6936 | $.ajax({ | 6868 | $.ajax({ |
... | @@ -6995,7 +6927,9 @@ async function sendClickBefore() { | ... | @@ -6995,7 +6927,9 @@ async function sendClickBefore() { |
6995 | } | 6927 | } |
6996 | } | 6928 | } |
6997 | } | 6929 | } |
6998 | var quality=false; | 6930 | |
6931 | var quality = false; | ||
6932 | |||
6999 | function createReport() { | 6933 | function createReport() { |
7000 | var data = window.formMgr.getDataJson(); | 6934 | var data = window.formMgr.getDataJson(); |
7001 | var formData = JSON.parse(data); | 6935 | var formData = JSON.parse(data); |
... | @@ -7017,27 +6951,27 @@ function createReport() { | ... | @@ -7017,27 +6951,27 @@ function createReport() { |
7017 | type: "POST", | 6951 | type: "POST", |
7018 | url: CONF_NEWGHSC_SERVERURL + '/ghsc/createPdfFileAndFold', | 6952 | url: CONF_NEWGHSC_SERVERURL + '/ghsc/createPdfFileAndFold', |
7019 | data: JSON.stringify({ | 6953 | data: JSON.stringify({ |
7020 | userId:userid, | 6954 | userId: userid, |
7021 | userName:username, | 6955 | userName: username, |
7022 | pid:_projectId, | 6956 | pid: _projectId, |
7023 | yjzjData:{ | 6957 | yjzjData: { |
7024 | xmlx:xmlx, | 6958 | xmlx: xmlx, |
7025 | ghjb:ghjb, | 6959 | ghjb: ghjb, |
7026 | xmmc:xmmc, | 6960 | xmmc: xmmc, |
7027 | ghqx:ghqx, | 6961 | ghqx: ghqx, |
7028 | bsrq:bsrq, | 6962 | bsrq: bsrq, |
7029 | ghfw:ghfw, | 6963 | ghfw: ghfw, |
7030 | cgbbh:cgbbh | 6964 | cgbbh: cgbbh |
7031 | } | 6965 | } |
7032 | }), | 6966 | }), |
7033 | async:false, | 6967 | async: false, |
7034 | dataType: 'json', | 6968 | dataType: 'json', |
7035 | contentType: "application/json;charset=UTF-8", | 6969 | contentType: "application/json;charset=UTF-8", |
7036 | success: function (res) { | 6970 | success: function (res) { |
7037 | console.log(res) | 6971 | console.log(res) |
7038 | if (res.code == 200) { | 6972 | if (res.code == 200) { |
7039 | layer.msg('生成一键质检报告成功'); | 6973 | layer.msg('生成一键质检报告成功'); |
7040 | $("#yjzjTableTpl").css("display","none"); | 6974 | $("#yjzjTableTpl").css("display", "none"); |
7041 | loadMaterialsNew(flowObjectName); | 6975 | loadMaterialsNew(flowObjectName); |
7042 | } else { | 6976 | } else { |
7043 | console.log("生成一键质检报告失败"); | 6977 | console.log("生成一键质检报告失败"); |
... | @@ -7049,5 +6983,5 @@ function createReport() { | ... | @@ -7049,5 +6983,5 @@ function createReport() { |
7049 | $("#yjzjTableTpl").remove(); | 6983 | $("#yjzjTableTpl").remove(); |
7050 | } | 6984 | } |
7051 | }); | 6985 | }); |
7052 | quality=true; | 6986 | quality = true; |
7053 | } | 6987 | } | ... | ... |
... | @@ -229,27 +229,6 @@ nav span { | ... | @@ -229,27 +229,6 @@ nav span { |
229 | <a class="glyphicon glyphicon-plus bindingAssignee" title="选择类型" onclick="selectProjecType()"></a> | 229 | <a class="glyphicon glyphicon-plus bindingAssignee" title="选择类型" onclick="selectProjecType()"></a> |
230 | </div> | 230 | </div> |
231 | 231 | ||
232 | <!-- <div class="search" style="position: relative;"> | ||
233 | <label>业务类别</label> | ||
234 | <select id="documentType" | ||
235 | onchange="changeType()"> | ||
236 | <option>所有</option> | ||
237 | <option v-for="option in options" v-bind:value="option.value">{{option.text}}</option> | ||
238 | </select> | ||
239 | </div> --> | ||
240 | <%--<div id="isTabs" style=" height: 32px;"> | ||
241 | <div style="display: flex;height: 32px;"> | ||
242 | <div onclick="lyfunc.tabsChanges(2)" id="cgscTable" class="tabs-changes select-tables"> | ||
243 | <img src="./img/menu-document-selected.png"/> | ||
244 | <span>成果审查</span> | ||
245 | </div> | ||
246 | <div onclick="lyfunc.tabsChanges(1)" id="sjsqTable" class="tabs-changes"> | ||
247 | <img src="./img/menu-document-checkbox.png"/> | ||
248 | <span>数据申请</span> | ||
249 | </div> | ||
250 | </div> | ||
251 | </div>--%> | ||
252 | |||
253 | <div class="clearboth"></div> | 232 | <div class="clearboth"></div> |
254 | <%-- <div style="border-bottom: 1px solid #cac8c8; margin-top: 5px;"></div>--%> | 233 | <%-- <div style="border-bottom: 1px solid #cac8c8; margin-top: 5px;"></div>--%> |
255 | 234 | ||
... | @@ -260,29 +239,7 @@ nav span { | ... | @@ -260,29 +239,7 @@ nav span { |
260 | <div id="page2" style="float:right"></div> | 239 | <div id="page2" style="float:right"></div> |
261 | 240 | ||
262 | </div> | 241 | </div> |
263 | <!-- <div id="nvaTab" class="data-list" style="margin-top: 10px;display:none"> | ||
264 | <div style="width: 100%;" dir="ltr" id="gbox_gridTable" | ||
265 | class="ui-jqgrid ui-widget ui-widget-content ui-corner-all"> | ||
266 | |||
267 | <div style="width: 100%;" id="gview_gridTable" | ||
268 | class="ui-jqgrid-view"> | ||
269 | |||
270 | <div class="ui-state-default ui-jqgrid-hdiv" style="width: 100%;"> | ||
271 | <table class="table datatable"> | ||
272 | 242 | ||
273 | </table> | ||
274 | <div class="nav-page" id="pageZero"> | ||
275 | <div> | ||
276 | 共<span id="total_records"></span>条,共<span id="total_page"></span>页 | ||
277 | </div> | ||
278 | <nav style="cursor:pointer;"> | ||
279 | <ul class="pagination"> | ||
280 | </nav> | ||
281 | </div> | ||
282 | </div> | ||
283 | </div> | ||
284 | </div> | ||
285 | </div> --> | ||
286 | <div id="msg" style="display: none;position: absolute;top: 50%;left: 50%;"> | 243 | <div id="msg" style="display: none;position: absolute;top: 50%;left: 50%;"> |
287 | <div style="color: #b9b4b4;font-size: 20px;position: fixed;top: 50%;left: 50%;transform: translate(-50%,-50%);">没有相关数据</div> | 244 | <div style="color: #b9b4b4;font-size: 20px;position: fixed;top: 50%;left: 50%;transform: translate(-50%,-50%);">没有相关数据</div> |
288 | </div> | 245 | </div> | ... | ... |
... | @@ -807,7 +807,7 @@ | ... | @@ -807,7 +807,7 @@ |
807 | 807 | ||
808 | <!-- GIS服务 --> | 808 | <!-- GIS服务 --> |
809 | <div id="browsingGrp" class="div-right-content-item" | 809 | <div id="browsingGrp" class="div-right-content-item" |
810 | style="display: inline-block;text-overflow: ellipsis;width: 100%;margin-left: 0;padding: 0px;"> | 810 | style="display: none;text-overflow: ellipsis;width: 100%;margin-left: 0;padding: 0px;"> |
811 | <div style="margin:33px 0 15px 0;"> | 811 | <div style="margin:33px 0 15px 0;"> |
812 | <img src="../../image/projecttask/dt.png" | 812 | <img src="../../image/projecttask/dt.png" |
813 | style="width: 25px;height:25px;margin-top: -5px;margin-right: 5px;"> | 813 | style="width: 25px;height:25px;margin-top: -5px;margin-right: 5px;"> | ... | ... |
-
Please register or sign in to post a comment