From 1e5692eb8d6712c7b1e61f823dff73ed1e0e495e Mon Sep 17 00:00:00 2001 From: lSun <15893999301@qq.com> Date: Mon, 14 Apr 2025 13:47:52 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BD=B1=E5=83=8F=E4=B8=8A=E4=BC=A0bug?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../child/coordinatePhotoForm.js | 4 +- .../coordinatePhoto/coordinatePhotoList.js | 41 +++------------ .../importantMatter/importantMatterList.js | 39 +++----------- .../child/qualityInspectionForm.js | 18 ++++--- .../qualityInspectionList.js | 43 ++++------------ .../safetyMeasure/safetyMeasureList.js | 39 +++----------- .../child/safetyViolationsForm.js | 18 ++++--- .../safetyViolations/safetyViolationsList.js | 51 +++++-------------- .../coordinatePhoto/coordinatePhotoList.html | 8 --- .../importantMatter/importantMatterList.html | 8 --- .../qualityInspectionList.html | 8 --- .../safetyMeasure/safetyMeasureList.html | 8 --- .../safetyViolationsList.html | 8 --- 13 files changed, 70 insertions(+), 223 deletions(-) diff --git a/src/main/resources/static/js/imageUpload/coordinatePhoto/child/coordinatePhotoForm.js b/src/main/resources/static/js/imageUpload/coordinatePhoto/child/coordinatePhotoForm.js index b93127f..579fe92 100644 --- a/src/main/resources/static/js/imageUpload/coordinatePhoto/child/coordinatePhotoForm.js +++ b/src/main/resources/static/js/imageUpload/coordinatePhoto/child/coordinatePhotoForm.js @@ -107,10 +107,10 @@ layui.use(['laydate', 'upload'], function () { let files = obj.pushFile(); obj.preview(function (index, file, result) { var length = $('#demo2 img').length; - if (length > 8) { + if (length > 49) { delete files[index];//删除指定图片 $(this).remove(); - return layer.msg("附件为1-9张,请勿过多上传", {icon: 5}); + return layer.msg("附件为1-50张,请勿过多上传", {icon: 5}); } const uniqueId = new Date().getTime() + '-' + index; $('#demo2').append( diff --git a/src/main/resources/static/js/imageUpload/coordinatePhoto/coordinatePhotoList.js b/src/main/resources/static/js/imageUpload/coordinatePhoto/coordinatePhotoList.js index 207cc73..8901fcd 100644 --- a/src/main/resources/static/js/imageUpload/coordinatePhoto/coordinatePhotoList.js +++ b/src/main/resources/static/js/imageUpload/coordinatePhoto/coordinatePhotoList.js @@ -7,7 +7,6 @@ layui.use(['form', 'layer', 'table', 'laydate'], function () { table = layui.table; layui.form.render(); getProSelected(); - getProTypeSelected(); getProcessIdSelected(); pages(1, 10, 1); @@ -74,15 +73,15 @@ function initTable(dataList, limit, page) { return (page - 1) * limit + d.LAY_INDEX; } }, - {field: "proName", title: "项目名称",width: 310, unresize: true, align: "center" }, - {field: "gxName", title: "工序",width: 110, unresize: true, align: "center"}, - {field: "buildPlace", title: "违章地点",width: 230, unresize: true, align: "center"}, - {title: "建设阶段", width: 110, unresize: true, align: "center", + {field: "proName", title: "项目名称", unresize: true, align: "center" }, + {field: "gxName", title: "工序", unresize: true, align: "center"}, + {field: "buildPlace", title: "违章地点", unresize: true, align: "center"}, + {title: "建设阶段", unresize: true, align: "center", templet: function(d) { return '建设前

建设中

恢复后'; } }, - {title: "建设照片", width: 110, unresize: true, align: "center", + {title: "建设照片", unresize: true, align: "center", templet: function (d) { // 统计各阶段的照片数量 let beforeCount = countPhotosBySourceType(d, "6"); @@ -96,13 +95,13 @@ function initTable(dataList, limit, page) { return html; } }, - {title: "建设描述", width: 310, unresize: true, align: "center", + {title: "建设描述", unresize: true, align: "center", templet: function (d) { return d.buildBeforeDesc + '

' + d.buildUnderDesc + '

' + d.buildAfterDesc; } }, - {field: "createUserName", title: "更新人",width: 110, unresize: true, align: "center"}, - {field: "createTime", title: "更新时间 ",width: 110, unresize: true, align: "center"}, + {field: "createUserName", title: "更新人", unresize: true, align: "center"}, + {field: "createTime", title: "更新时间 ", unresize: true, align: "center"}, {title: "操作", unresize: true, width: 170, align: "center", templet: function (d) { let html = ''; @@ -131,7 +130,6 @@ function getReqParams(page, limit, type) { if (type === 2) { $('#keyWord').val('') $('#proId').val('') - $('#proTypeId').val('') $('#processId').val('') layui.form.render(); } @@ -140,7 +138,6 @@ function getReqParams(page, limit, type) { limit: limit + "", keyWord: $('#keyWord').val(), proId: $('#proId').val(), - proType: $('#proTypeId').val(), gxId: $('#processId').val() }; @@ -242,27 +239,6 @@ function getProSelected() { }); } -/** - * 获取工程类型 - */ -function getProTypeSelected() { - let url = dataUrl + '/sys/select/getDictSelectByType'; - - let data={ - encryptedData:encryptCBC(JSON.stringify({"code":"pro_type"})) - } - ajaxRequest(url, "GET", data, true, function () { - }, function (result) { - if (result.code === 200) { - setSelectValue(result.data, 'proTypeId','请选择工程类型'); - } else { - layer.alert(result.msg, {icon: 2}) - } - }, function (xhr) { - error(xhr) - }); -} - /** * 获取工序 */ @@ -308,7 +284,6 @@ function exportExcel() { let obj = { keyWord: $('#keyWord').val(), proId: $('#proId').val(), - proType: $('#proTypeId').val(), gxId: $('#processId').val(), }; let loadingMsg = layer.msg("数据导出中,请稍候...", {icon: 16, scrollbar: false, time: 0,}); diff --git a/src/main/resources/static/js/imageUpload/importantMatter/importantMatterList.js b/src/main/resources/static/js/imageUpload/importantMatter/importantMatterList.js index 18dba75..735e9ee 100644 --- a/src/main/resources/static/js/imageUpload/importantMatter/importantMatterList.js +++ b/src/main/resources/static/js/imageUpload/importantMatter/importantMatterList.js @@ -7,7 +7,6 @@ layui.use(['form', 'layer', 'table', 'laydate'], function () { table = layui.table; layui.form.render(); getProSelected(); - getProTypeSelected(); getProcessIdSelected(); pages(1, 10, 1); @@ -70,18 +69,18 @@ function initTable(dataList, limit, page) { return (page - 1) * limit + d.LAY_INDEX; } }, - {field: "proName", title: "项目名称",width: 310, unresize: true, align: "center" }, - {field: "gxName", title: "工序",width: 200, unresize: true, align: "center"}, - {field: "title", title: "标题",width: 210, unresize: true, align: "center"}, - {field: "content", title: "内容",width: 310, unresize: true, align: "center"}, - {field: "", title: "照片",width: 150, unresize: true, align: "center", + {field: "proName", title: "项目名称", unresize: true, align: "center" }, + {field: "gxName", title: "工序", unresize: true, align: "center"}, + {field: "title", title: "标题", unresize: true, align: "center"}, + {field: "content", title: "内容", unresize: true, align: "center"}, + {field: "", title: "照片", unresize: true, align: "center", templet: function (d) { let html=""+d.sysFileResourceList.length+""; return html; } }, - {field: "createUserName", title: "上传人",width: 110, unresize: true, align: "center"}, - {field: "createTime", title: "更新时间",width: 140, unresize: true, align: "center"}, + {field: "createUserName", title: "上传人", unresize: true, align: "center"}, + {field: "createTime", title: "更新时间", unresize: true, align: "center"}, {title: "操作", unresize: true, width: 170, align: "center", templet: function (d) { let html = ''; @@ -111,7 +110,6 @@ function getReqParams(page, limit, type) { if (type === 2) { $('#keyWord').val('') $('#proId').val('') - $('#proTypeId').val('') $('#processId').val('') layui.form.render(); } @@ -121,7 +119,6 @@ function getReqParams(page, limit, type) { limit: limit + "", keyWord: $('#keyWord').val(), proId: $('#proId').val(), - majorId: $('#proTypeId').val(), gxId: $('#processId').val(), }; console.log(obj) @@ -222,27 +219,6 @@ function getProSelected() { }); } -/** - * 获取工程类型 - */ -function getProTypeSelected() { - let url = dataUrl + '/sys/select/getDictSelectByType'; - - let data={ - encryptedData:encryptCBC(JSON.stringify({"code":"pro_type"})) - } - ajaxRequest(url, "GET", data, true, function () { - }, function (result) { - if (result.code === 200) { - setSelectValue(result.data, 'proTypeId','请选择工程类型'); - } else { - layer.alert(result.msg, {icon: 2}) - } - }, function (xhr) { - error(xhr) - }); -} - /** * 获取工序 */ @@ -286,7 +262,6 @@ function exportExcel() { let obj = { keyWord: $('#keyWord').val(), proId: $('#proId').val(), - majorId: $('#proTypeId').val(), gxId: $('#processId').val(), }; let loadingMsg = layer.msg("数据导出中,请稍候...", {icon: 16, scrollbar: false, time: 0,}); diff --git a/src/main/resources/static/js/imageUpload/qualityInspection/child/qualityInspectionForm.js b/src/main/resources/static/js/imageUpload/qualityInspection/child/qualityInspectionForm.js index cb49265..b042489 100644 --- a/src/main/resources/static/js/imageUpload/qualityInspection/child/qualityInspectionForm.js +++ b/src/main/resources/static/js/imageUpload/qualityInspection/child/qualityInspectionForm.js @@ -296,10 +296,10 @@ function setFormData(data) { var demo1 = $("#demo1"); for (var i = 0; i < vioPhotoListEdit.length; i++) { let filePath = imgUrl + data.vioPhotoList[i].originalFilePath + "?token=" + tokens - html = html + '
' + + html = html + '
' + '' + data.vioPhotoList[i].fileName + '' ; if (details != 1) { - html = html + ''; + html = html + ''; } html = html + '
'; } @@ -312,10 +312,10 @@ function setFormData(data) { var html = ""; for (var i = 0; i < rectPhotoListEdit.length; i++) { let filePath = imgUrl + data.rectPhotoList[i].originalFilePath + "?token=" + tokens - html = html + '
' + + html = html + '
' + '' + data.rectPhotoList[i].fileName + ''; if (details != 1) { - html = html + ''; + html = html + ''; } html = html + '
'; } @@ -337,8 +337,14 @@ function setFormData(data) { } } -function removeImageUpdate(uniqueId, id) { - $('#img-' + uniqueId).remove(); +function removeImageUpdate1(uniqueId, id) { + $('#imga-' + uniqueId).remove(); + let ids = {"id":id} + deleteFileList.push(ids) +}; + +function removeImageUpdate2(uniqueId, id) { + $('#imgb-' + uniqueId).remove(); let ids = {"id":id} deleteFileList.push(ids) }; diff --git a/src/main/resources/static/js/imageUpload/qualityInspection/qualityInspectionList.js b/src/main/resources/static/js/imageUpload/qualityInspection/qualityInspectionList.js index 658147b..4f1e6cc 100644 --- a/src/main/resources/static/js/imageUpload/qualityInspection/qualityInspectionList.js +++ b/src/main/resources/static/js/imageUpload/qualityInspection/qualityInspectionList.js @@ -7,7 +7,6 @@ layui.use(['form', 'layer', 'table', 'laydate'], function () { table = layui.table; layui.form.render(); getProSelected(); - getProTypeSelected(); getProcessIdSelected(); getStateIdSelected(); pages(1, 10, 1); @@ -71,20 +70,20 @@ function initTable(dataList, limit, page) { return (page - 1) * limit + d.LAY_INDEX; } }, - {field: "proName", title: "项目名称",width: 110, unresize: true, align: "center" }, - {field: "gxName", title: "工序",width: 110, unresize: true, align: "center"}, - {field: "vioPlace", title: "检查地点",width: 110, unresize: true, align: "center"}, - {field: "vioDesc", title: "检查描述",width: 110, unresize: true, align: "center"}, - {field: "", title: "缺陷问题照片",width: 150, unresize: true, align: "center", + {field: "proName", title: "项目名称", unresize: true, align: "center" }, + {field: "gxName", title: "工序",unresize: true, align: "center"}, + {field: "vioPlace", title: "检查地点", unresize: true, align: "center"}, + {field: "vioDesc", title: "检查描述",unresize: true, align: "center"}, + {field: "", title: "缺陷问题照片", unresize: true, align: "center", templet: function (d) { let html=""+d.vioPhotoNum+""; return html; } }, - {field: "checkUserName", title: "检查人",width: 90, unresize: true, align: "center"}, - {field: "vioDate", title: "检查时间",width: 110, unresize: true, align: "center"}, - {field: "rectDate", title: "整改期限",width: 110, unresize: true, align: "center"}, - {field: "", title: "整改状态",width: 110, unresize: true, align: "center", + {field: "checkUserName", title: "检查人", unresize: true, align: "center"}, + {field: "vioDate", title: "检查时间", unresize: true, align: "center"}, + {field: "rectDate", title: "整改期限", unresize: true, align: "center"}, + {field: "", title: "整改状态", unresize: true, align: "center", templet: function (d) { var html=""; if (d.rectStatus == 0) { @@ -136,7 +135,6 @@ function getReqParams(page, limit, type) { if (type === 2) { $('#keyWord').val('') $('#proId').val('') - $('#proTypeId').val('') $('#processId').val('') $('#stateId').val('') layui.form.render(); @@ -146,7 +144,6 @@ function getReqParams(page, limit, type) { limit: limit + "", keyWord: $('#keyWord').val(), proId: $('#proId').val(), - proType: $('#proTypeId').val(), gxId: $('#processId').val(), proStatus: $('#stateId').val() }; @@ -248,27 +245,6 @@ function getProSelected() { }); } -/** - * 获取工程类型 - */ -function getProTypeSelected() { - let url = dataUrl + '/sys/select/getDictSelectByType'; - - let data={ - encryptedData:encryptCBC(JSON.stringify({"code":"pro_type"})) - } - ajaxRequest(url, "GET", data, true, function () { - }, function (result) { - if (result.code === 200) { - setSelectValue(result.data, 'proTypeId','请选择工程类型'); - } else { - layer.alert(result.msg, {icon: 2}) - } - }, function (xhr) { - error(xhr) - }); -} - /** * 获取工序 */ @@ -342,7 +318,6 @@ function exportExcel() { let obj = { keyWord: $('#keyWord').val(), proId: $('#proId').val(), - proType: $('#proTypeId').val(), gxId: $('#processId').val(), proStatus: $('#stateId').val() }; diff --git a/src/main/resources/static/js/imageUpload/safetyMeasure/safetyMeasureList.js b/src/main/resources/static/js/imageUpload/safetyMeasure/safetyMeasureList.js index ca92ecb..0e28567 100644 --- a/src/main/resources/static/js/imageUpload/safetyMeasure/safetyMeasureList.js +++ b/src/main/resources/static/js/imageUpload/safetyMeasure/safetyMeasureList.js @@ -7,7 +7,6 @@ layui.use(['form', 'layer', 'table', 'laydate'], function () { table = layui.table; layui.form.render(); getProSelected(); - getProTypeSelected(); getProcessIdSelected(); pages(1, 10, 1); @@ -70,18 +69,18 @@ function initTable(dataList, limit, page) { return (page - 1) * limit + d.LAY_INDEX; } }, - {field: "proName", title: "项目名称",width: 310, unresize: true, align: "center" }, - {field: "gxName", title: "工序",width: 200, unresize: true, align: "center"}, - {field: "checkPlace", title: "检查地点",width: 210, unresize: true, align: "center"}, - {field: "checkDesc", title: "问题描述",width: 310, unresize: true, align: "center"}, - {field: "", title: "现场照片",width: 150, unresize: true, align: "center", + {field: "proName", title: "项目名称", unresize: true, align: "center" }, + {field: "gxName", title: "工序", unresize: true, align: "center"}, + {field: "checkPlace", title: "检查地点", unresize: true, align: "center"}, + {field: "checkDesc", title: "问题描述", unresize: true, align: "center"}, + {field: "", title: "现场照片", unresize: true, align: "center", templet: function (d) { let html=""+d.sysFileResourceList.length+""; return html; } }, - {field: "checkUserName", title: "检查人",width: 110, unresize: true, align: "center"}, - {field: "checkDate", title: "检查时间",width: 140, unresize: true, align: "center"}, + {field: "checkUserName", title: "检查人", unresize: true, align: "center"}, + {field: "checkDate", title: "检查时间", unresize: true, align: "center"}, {title: "操作", unresize: true, width: 170, align: "center", templet: function (d) { let html = ''; @@ -111,7 +110,6 @@ function getReqParams(page, limit, type) { if (type === 2) { $('#keyWord').val('') $('#proId').val('') - $('#proTypeId').val('') $('#processId').val('') layui.form.render(); } @@ -121,7 +119,6 @@ function getReqParams(page, limit, type) { limit: limit + "", keyWord: $('#keyWord').val(), proId: $('#proId').val(), - majorId: $('#proTypeId').val(), gxId: $('#processId').val(), }; console.log(obj) @@ -222,27 +219,6 @@ function getProSelected() { }); } -/** - * 获取工程类型 - */ -function getProTypeSelected() { - let url = dataUrl + '/sys/select/getDictSelectByType'; - - let data={ - encryptedData:encryptCBC(JSON.stringify({"code":"pro_type"})) - } - ajaxRequest(url, "GET", data, true, function () { - }, function (result) { - if (result.code === 200) { - setSelectValue(result.data, 'proTypeId','请选择工程类型'); - } else { - layer.alert(result.msg, {icon: 2}) - } - }, function (xhr) { - error(xhr) - }); -} - /** * 获取工序 */ @@ -287,7 +263,6 @@ function exportExcel() { let obj = { keyWord: $('#keyWord').val(), proId: $('#proId').val(), - majorId: $('#proTypeId').val(), gxId: $('#processId').val(), }; let loadingMsg = layer.msg("数据导出中,请稍候...", {icon: 16, scrollbar: false, time: 0,}); diff --git a/src/main/resources/static/js/imageUpload/safetyViolations/child/safetyViolationsForm.js b/src/main/resources/static/js/imageUpload/safetyViolations/child/safetyViolationsForm.js index 4116071..1f2aca8 100644 --- a/src/main/resources/static/js/imageUpload/safetyViolations/child/safetyViolationsForm.js +++ b/src/main/resources/static/js/imageUpload/safetyViolations/child/safetyViolationsForm.js @@ -304,10 +304,10 @@ function setFormData(data) { var demo1 = $("#demo1"); for (var i = 0; i < vioPhotoListEdit.length; i++) { let filePath = imgUrl + data.vioPhotoList[i].originalFilePath + "?token=" + tokens - html = html + '
' + + html = html + '
' + '' + data.vioPhotoList[i].fileName + '' ; if (details != 1) { - html = html + ''; + html = html + ''; } html = html + '
'; } @@ -320,10 +320,10 @@ function setFormData(data) { var html = ""; for (var i = 0; i < rectPhotoListEdit.length; i++) { let filePath = imgUrl + data.rectPhotoList[i].originalFilePath + "?token=" + tokens - html = html + '
' + + html = html + '
' + '' + data.rectPhotoList[i].fileName + ''; if (details != 1) { - html = html + ''; + html = html + ''; } html = html + '
'; } @@ -345,8 +345,14 @@ function setFormData(data) { } } -function removeImageUpdate(uniqueId, id) { - $('#img-' + uniqueId).remove(); +function removeImageUpdate1(uniqueId, id) { + $('#imga-' + uniqueId).remove(); + let ids = {"id":id} + deleteFileList.push(ids) +}; + +function removeImageUpdate2(uniqueId, id) { + $('#imgb-' + uniqueId).remove(); let ids = {"id":id} deleteFileList.push(ids) }; diff --git a/src/main/resources/static/js/imageUpload/safetyViolations/safetyViolationsList.js b/src/main/resources/static/js/imageUpload/safetyViolations/safetyViolationsList.js index 91dfc63..b377827 100644 --- a/src/main/resources/static/js/imageUpload/safetyViolations/safetyViolationsList.js +++ b/src/main/resources/static/js/imageUpload/safetyViolations/safetyViolationsList.js @@ -7,7 +7,6 @@ layui.use(['form', 'layer', 'table', 'laydate'], function () { table = layui.table; layui.form.render(); getProSelected(); - getProTypeSelected(); getProcessIdSelected(); getStateIdSelected(); pages(1, 10, 1); @@ -70,20 +69,20 @@ function initTable(dataList, limit, page) { return (page - 1) * limit + d.LAY_INDEX; } }, - {field: "proName", title: "项目名称",width: 110, unresize: true, align: "center" }, - {field: "gxName", title: "工序",width: 110, unresize: true, align: "center"}, - {field: "vioPlace", title: "违章地点",width: 110, unresize: true, align: "center"}, - {field: "vioDesc", title: "违章描述",width: 110, unresize: true, align: "center"}, - {field: "", title: "违章照片",width: 110, unresize: true, align: "center", + {field: "proName", title: "项目名称", unresize: true, align: "center" }, + {field: "gxName", title: "工序", unresize: true, align: "center"}, + {field: "vioPlace", title: "违章地点",unresize: true, align: "center"}, + {field: "vioDesc", title: "违章描述",unresize: true, align: "center"}, + {field: "", title: "违章照片", unresize: true, align: "center", templet: function (d) { let html=""+d.vioPhotoNum+""; return html; } }, - {field: "checkUserName", title: "检查人",width: 110, unresize: true, align: "center"}, - {field: "vioDate", title: "违章时间",width: 110, unresize: true, align: "center"}, - {field: "rectDate", title: "整改期限",width: 110, unresize: true, align: "center"}, - {field: "", title: "整改状态",width: 110, unresize: true, align: "center", + {field: "checkUserName", title: "检查人", unresize: true, align: "center"}, + {field: "vioDate", title: "违章时间",unresize: true, align: "center"}, + {field: "rectDate", title: "整改期限",unresize: true, align: "center"}, + {field: "", title: "整改状态", unresize: true, align: "center", templet: function (d) { var html=""; if (d.rectStatus == 0) { @@ -98,15 +97,15 @@ function initTable(dataList, limit, page) { } } }, - {field: "", title: "整改照片",width: 110, unresize: true, align: "center", + {field: "", title: "整改照片", unresize: true, align: "center", templet: function (d) { let html=""+d.rectPhotoNum+""; return html; } }, - {field: "rectDesc", title: "整改说明",width: 110, unresize: true, align: "center"}, - {field: "rectUserName", title: "整改人",width: 110, unresize: true, align: "center"}, - {field: "rectTime", title: "整改时间",width: 110, unresize: true, align: "center"}, + {field: "rectDesc", title: "整改说明", unresize: true, align: "center"}, + {field: "rectUserName", title: "整改人", unresize: true, align: "center"}, + {field: "rectTime", title: "整改时间", unresize: true, align: "center"}, {title: "操作", unresize: true, width: 170, align: "center", templet: function (d) { let html = ''; @@ -135,7 +134,6 @@ function getReqParams(page, limit, type) { if (type === 2) { $('#keyWord').val('') $('#proId').val('') - $('#proTypeId').val('') $('#processId').val('') $('#stateId').val('') layui.form.render(); @@ -145,7 +143,6 @@ function getReqParams(page, limit, type) { limit: limit + "", keyWord: $('#keyWord').val(), proId: $('#proId').val(), - proType: $('#proTypeId').val(), gxId: $('#processId').val(), proStatus: $('#stateId').val() @@ -248,27 +245,6 @@ function getProSelected() { }); } -/** - * 获取工程类型 - */ -function getProTypeSelected() { - let url = dataUrl + '/sys/select/getDictSelectByType'; - - let data={ - encryptedData:encryptCBC(JSON.stringify({"code":"pro_type"})) - } - ajaxRequest(url, "GET", data, true, function () { - }, function (result) { - if (result.code === 200) { - setSelectValue(result.data, 'proTypeId','请选择工程类型'); - } else { - layer.alert(result.msg, {icon: 2}) - } - }, function (xhr) { - error(xhr) - }); -} - /** * 获取工序 */ @@ -342,7 +318,6 @@ function exportExcel() { let obj = { keyWord: $('#keyWord').val(), proId: $('#proId').val(), - proType: $('#proTypeId').val(), gxId: $('#processId').val(), proStatus: $('#stateId').val() }; diff --git a/src/main/resources/static/pages/imageUpload/coordinatePhoto/coordinatePhotoList.html b/src/main/resources/static/pages/imageUpload/coordinatePhoto/coordinatePhotoList.html index 74f52c5..cf1f3d4 100644 --- a/src/main/resources/static/pages/imageUpload/coordinatePhoto/coordinatePhotoList.html +++ b/src/main/resources/static/pages/imageUpload/coordinatePhoto/coordinatePhotoList.html @@ -32,14 +32,6 @@
-
-
- -
-
-
- - -
-
-
- - -
-
-
- - -
-
-
- - -
-
-