diff --git a/admin-assistant/src/main/resources/template/js/assetArticlesPurchase/assetArticlesPurchaseList.js b/admin-assistant/src/main/resources/template/js/assetArticlesPurchase/assetArticlesPurchaseList.js index d81516e7fd308f88e77147ceef3aee5f905ce045..e06ab657c741867098efb459599e3f160c5c5967 100644 --- a/admin-assistant/src/main/resources/template/js/assetArticlesPurchase/assetArticlesPurchaseList.js +++ b/admin-assistant/src/main/resources/template/js/assetArticlesPurchase/assetArticlesPurchaseList.js @@ -93,7 +93,7 @@ layui.config({ var msg = '确认撤销该用品采购申请吗?'; layer.confirm(msg, { icon: 3, title: '撤销操作' }, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "assetarticles035", params: {processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "assetarticles035", params: {processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadCaigouTable(); diff --git a/admin-assistant/src/main/resources/template/js/assetArticlesUse/assetArticlesUseList.js b/admin-assistant/src/main/resources/template/js/assetArticlesUse/assetArticlesUseList.js index bda8aa0d2ac3fa9aef5300544c1c2f9b8e23ae8c..2123cea3b821071441ec92e434fa7ea089f28db8 100644 --- a/admin-assistant/src/main/resources/template/js/assetArticlesUse/assetArticlesUseList.js +++ b/admin-assistant/src/main/resources/template/js/assetArticlesUse/assetArticlesUseList.js @@ -105,7 +105,7 @@ layui.config({ var msg = '确认撤销该用品领用申请吗?'; layer.confirm(msg, { icon: 3, title: '撤销操作' }, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "assetarticles034", params: {processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "assetarticles034", params: {processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadLingyongTable(); diff --git a/admin-assistant/src/main/resources/template/js/assetManagePurchase/assetManagePurchaseList.js b/admin-assistant/src/main/resources/template/js/assetManagePurchase/assetManagePurchaseList.js index fa160be57ea5970e179729c556ce8bf02dbe4add..f947b6fa894ac43bb1554acbaf5beff1a77cd025 100644 --- a/admin-assistant/src/main/resources/template/js/assetManagePurchase/assetManagePurchaseList.js +++ b/admin-assistant/src/main/resources/template/js/assetManagePurchase/assetManagePurchaseList.js @@ -101,7 +101,7 @@ layui.config({ var msg = '确认撤销该资产采购申请吗?'; layer.confirm(msg, { icon: 3, title: '撤销操作' }, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "asset037", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "asset037", params:{processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadCaigouTable(); diff --git a/admin-assistant/src/main/resources/template/js/assetManageReturn/assetManageReturnList.js b/admin-assistant/src/main/resources/template/js/assetManageReturn/assetManageReturnList.js index 2e8cf47435a6d87e3d349be2d5862ab29aff154a..4481f570245bac28ddd8a3fc2e1a2ae5f4ccc6a7 100644 --- a/admin-assistant/src/main/resources/template/js/assetManageReturn/assetManageReturnList.js +++ b/admin-assistant/src/main/resources/template/js/assetManageReturn/assetManageReturnList.js @@ -104,7 +104,7 @@ layui.config({ var msg = '确认撤销该资产归还申请吗?'; layer.confirm(msg, { icon: 3, title: '撤销操作' }, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "asset038", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "asset038", params:{processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadReturnTable(); diff --git a/admin-assistant/src/main/resources/template/js/assetManageUse/assetManageUseList.js b/admin-assistant/src/main/resources/template/js/assetManageUse/assetManageUseList.js index 0e945a4067ac45f05ccd2b34718c783c7c4b7454..d2f663bb6f545b67628d2c731312d4b60f4e050b 100644 --- a/admin-assistant/src/main/resources/template/js/assetManageUse/assetManageUseList.js +++ b/admin-assistant/src/main/resources/template/js/assetManageUse/assetManageUseList.js @@ -104,7 +104,7 @@ layui.config({ var msg = '确认撤销该资产领用申请吗?'; layer.confirm(msg, { icon: 3, title: '撤销操作' }, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "asset036", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "asset036", params:{processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadLingyongTable(); diff --git a/admin-assistant/src/main/resources/template/js/conFerenceRoomReserve/conFerenceRoomReserveList.js b/admin-assistant/src/main/resources/template/js/conFerenceRoomReserve/conFerenceRoomReserveList.js index cfe718428b3156abe4626d6effd320dbd1045649..1dad68a602f9b356cee4282944338524c7bcf550 100644 --- a/admin-assistant/src/main/resources/template/js/conFerenceRoomReserve/conFerenceRoomReserveList.js +++ b/admin-assistant/src/main/resources/template/js/conFerenceRoomReserve/conFerenceRoomReserveList.js @@ -95,7 +95,7 @@ layui.config({ var params = { processInstanceId: data.processInstanceId }; - AjaxPostUtil.request({url: flowableBasePath + "conferenceroomreserve010", params: params, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "conferenceroomreserve010", params: params, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadReserveTable(); diff --git a/admin-assistant/src/main/resources/template/js/licenceManageBorrow/licenceManageBorrowList.js b/admin-assistant/src/main/resources/template/js/licenceManageBorrow/licenceManageBorrowList.js index 2138e533260556edbf3373d392653f7302b6d5bf..2f83d6540bcf449c373e38d8debc5a5ec7b337a6 100644 --- a/admin-assistant/src/main/resources/template/js/licenceManageBorrow/licenceManageBorrowList.js +++ b/admin-assistant/src/main/resources/template/js/licenceManageBorrow/licenceManageBorrowList.js @@ -92,7 +92,7 @@ layui.config({ var msg = '确认撤销该借用申请吗?'; layer.confirm(msg, { icon: 3, title: '撤销操作' }, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "licenceborrow010", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "licenceborrow010", params:{processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadBorrowTable(); diff --git a/admin-assistant/src/main/resources/template/js/licenceManageRevert/licenceManageRevertList.js b/admin-assistant/src/main/resources/template/js/licenceManageRevert/licenceManageRevertList.js index 711a3a29773c86d1f167ed399263f0e47e76e659..ec33883a03f0d450285443f8026828a808545b56 100644 --- a/admin-assistant/src/main/resources/template/js/licenceManageRevert/licenceManageRevertList.js +++ b/admin-assistant/src/main/resources/template/js/licenceManageRevert/licenceManageRevertList.js @@ -92,7 +92,7 @@ layui.config({ var msg = '确认撤销该归还申请吗?'; layer.confirm(msg, { icon: 3, title: '撤销操作' }, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "licencerevert010", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "licencerevert010", params:{processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadRevertTable(); diff --git a/admin-assistant/src/main/resources/template/js/sealManageBorrow/sealManageBorrowList.js b/admin-assistant/src/main/resources/template/js/sealManageBorrow/sealManageBorrowList.js index 24693634ad8f6527754a3f4da0392397f03d95fc..25fa8caf4168b674d5d7b284b1e4ea4814e51999 100644 --- a/admin-assistant/src/main/resources/template/js/sealManageBorrow/sealManageBorrowList.js +++ b/admin-assistant/src/main/resources/template/js/sealManageBorrow/sealManageBorrowList.js @@ -91,7 +91,7 @@ layui.config({ var msg = '确认撤销该借用申请吗?'; layer.confirm(msg, { icon: 3, title: '撤销操作'}, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "sealborrow010", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "sealborrow010", params:{processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadBorrowTable(); diff --git a/admin-assistant/src/main/resources/template/js/sealManageRevert/sealManageRevertList.js b/admin-assistant/src/main/resources/template/js/sealManageRevert/sealManageRevertList.js index 9f447ee83a18e192e5d9b2a39d4ec3e7423b9d7f..304fe9820b74f05a28615945ee02b539e1b097ce 100644 --- a/admin-assistant/src/main/resources/template/js/sealManageRevert/sealManageRevertList.js +++ b/admin-assistant/src/main/resources/template/js/sealManageRevert/sealManageRevertList.js @@ -92,7 +92,7 @@ layui.config({ var msg = '确认撤销该归还申请吗?'; layer.confirm(msg, { icon: 3, title: '撤销操作' }, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "sealrevert010", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "sealrevert010", params:{processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadRevertTable(); diff --git a/admin-assistant/src/main/resources/template/js/vehicleManageUse/vehicleManageUseList.js b/admin-assistant/src/main/resources/template/js/vehicleManageUse/vehicleManageUseList.js index b9916d4fbdfeed1aa619b9797b749e535922a90c..acac8cd4b759e0a79540f85f6b103faa907e75ba 100644 --- a/admin-assistant/src/main/resources/template/js/vehicleManageUse/vehicleManageUseList.js +++ b/admin-assistant/src/main/resources/template/js/vehicleManageUse/vehicleManageUseList.js @@ -87,7 +87,7 @@ layui.config({ function revoke(data){ layer.confirm('确认撤销该用车申请吗?', {icon: 3, title: '撤销操作'}, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "vehicle022", params: {processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "vehicle022", params: {processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadTable(); diff --git a/checkwork/src/main/resources/template/js/checkWorkBusinessTrip/checkWorkBusinessTripList.js b/checkwork/src/main/resources/template/js/checkWorkBusinessTrip/checkWorkBusinessTripList.js index 83e9d57111be9d46150a01300e448ec73b8dfc10..9231db34fcf22191008c9f5c23a64d07e5c5e52f 100644 --- a/checkwork/src/main/resources/template/js/checkWorkBusinessTrip/checkWorkBusinessTripList.js +++ b/checkwork/src/main/resources/template/js/checkWorkBusinessTrip/checkWorkBusinessTripList.js @@ -106,7 +106,7 @@ layui.config({ function revoke(data){ layer.confirm('确认撤销该申请吗?', { icon: 3, title: '撤销操作' }, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "checkworkbusinesstrip009", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "checkworkbusinesstrip009", params:{processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadTable(); diff --git a/checkwork/src/main/resources/template/js/checkWorkCancelLeave/checkWorkCancelLeaveList.js b/checkwork/src/main/resources/template/js/checkWorkCancelLeave/checkWorkCancelLeaveList.js index 932a9688971da7a1335ee0a5c9773b8c2a463595..3630e12051c157e571e3af81e00231c85398c03c 100644 --- a/checkwork/src/main/resources/template/js/checkWorkCancelLeave/checkWorkCancelLeaveList.js +++ b/checkwork/src/main/resources/template/js/checkWorkCancelLeave/checkWorkCancelLeaveList.js @@ -106,7 +106,7 @@ layui.config({ function revoke(data){ layer.confirm('确认撤销该申请吗?', { icon: 3, title: '撤销操作' }, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "checkworkcancelleave009", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "checkworkcancelleave009", params:{processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadTable(); diff --git a/checkwork/src/main/resources/template/js/checkWorkLeave/checkWorkLeaveList.js b/checkwork/src/main/resources/template/js/checkWorkLeave/checkWorkLeaveList.js index 28957e4aa9824cc70bb30057a7539d97d5e3740b..4fa21dd01499f099a1f8acdc5b49bc2062c50f5e 100644 --- a/checkwork/src/main/resources/template/js/checkWorkLeave/checkWorkLeaveList.js +++ b/checkwork/src/main/resources/template/js/checkWorkLeave/checkWorkLeaveList.js @@ -106,7 +106,7 @@ layui.config({ function revoke(data){ layer.confirm('确认撤销该申请吗?', { icon: 3, title: '撤销操作' }, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "checkworkleave009", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "checkworkleave009", params:{processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadTable(); diff --git a/checkwork/src/main/resources/template/js/checkWorkOvertime/checkWorkOvertimeList.js b/checkwork/src/main/resources/template/js/checkWorkOvertime/checkWorkOvertimeList.js index 9f3c71e368003416d7723a418c49d512f0a61407..c79115ec827202738cfd80e3e8e3a91088b98804 100644 --- a/checkwork/src/main/resources/template/js/checkWorkOvertime/checkWorkOvertimeList.js +++ b/checkwork/src/main/resources/template/js/checkWorkOvertime/checkWorkOvertimeList.js @@ -106,7 +106,7 @@ layui.config({ function revoke(data){ layer.confirm('确认撤销该申请吗?', { icon: 3, title: '撤销操作' }, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "checkworkovertime009", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "checkworkovertime009", params:{processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadTable(); diff --git a/crm/src/main/resources/template/js/crmOpportunity/crmOpportunityList.js b/crm/src/main/resources/template/js/crmOpportunity/crmOpportunityList.js index 28199981ad7068080dd79d09ef736730080ef905..6fdccb91afdef6bc30b7380f55fdbef9f30f26da 100644 --- a/crm/src/main/resources/template/js/crmOpportunity/crmOpportunityList.js +++ b/crm/src/main/resources/template/js/crmOpportunity/crmOpportunityList.js @@ -101,7 +101,7 @@ layui.config({ function revoke(data){ layer.confirm('确认撤销该商机审批申请吗?', { icon: 3, title: '撤销操作' }, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "opportunity027", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "opportunity027", params:{processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadTable(); diff --git a/crm/src/main/resources/template/js/crmOpportunity/myCrmOpportunityList.js b/crm/src/main/resources/template/js/crmOpportunity/myCrmOpportunityList.js index 479b18b548abf22dccffe65bf221eb041f291d8d..a2a4c58230d2c4a59b5fd9a973d9084feb3bc4fe 100644 --- a/crm/src/main/resources/template/js/crmOpportunity/myCrmOpportunityList.js +++ b/crm/src/main/resources/template/js/crmOpportunity/myCrmOpportunityList.js @@ -99,7 +99,7 @@ layui.config({ function revoke(data){ layer.confirm('确认撤销该商机审批申请吗?', { icon: 3, title: '撤销操作' }, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "opportunity027", params:{rowId: data.id, processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "opportunity027", params:{rowId: data.id, processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadTable(); diff --git a/ifs/src/main/resources/template/js/income/incomeList.js b/ifs/src/main/resources/template/js/income/incomeList.js index eaff65f47a129a37b77eeb72196bfeb36f39cff2..d3a2f8850299a0f7ac991081820b4d40e7e59248 100644 --- a/ifs/src/main/resources/template/js/income/incomeList.js +++ b/ifs/src/main/resources/template/js/income/incomeList.js @@ -161,7 +161,7 @@ layui.config({ function revorke(data){ layer.confirm('确认撤销该申请吗?', { icon: 3, title: '撤销操作' }, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "income009", params: {processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "income009", params: {processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadTable(); diff --git a/pro/src/main/resources/template/js/procostexpense/procostexpensealllist.js b/pro/src/main/resources/template/js/procostexpense/procostexpensealllist.js index 071bf8254bb8970357b975df1a8ef8d8044a38c8..0dfe936100776914907e687e531f3aaa72b9767b 100644 --- a/pro/src/main/resources/template/js/procostexpense/procostexpensealllist.js +++ b/pro/src/main/resources/template/js/procostexpense/procostexpensealllist.js @@ -87,7 +87,7 @@ layui.config({ var msg = '确认从工作流中撤销选中数据吗?'; layer.confirm(msg, { icon: 3, title: '撤销操作' }, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "procostexpense007", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "procostexpense007", params: {processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadTable(); diff --git a/pro/src/main/resources/template/js/proproject/myproprojectlist.js b/pro/src/main/resources/template/js/proproject/myproprojectlist.js index 53173f94350433b3ee41283708c4f1611f8ef642..1068af00acc475b487cd20cdeb81faff7c8c61b9 100644 --- a/pro/src/main/resources/template/js/proproject/myproprojectlist.js +++ b/pro/src/main/resources/template/js/proproject/myproprojectlist.js @@ -152,7 +152,7 @@ layui.config({ function revoke(data){ layer.confirm("确定撤销申请吗?", {icon: 3, title: '撤销操作'}, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "proproject010", params: {processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "proproject010", params: {processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("撤销成功", {icon: 1, time: 2000}); loadTable(); diff --git a/pro/src/main/resources/template/js/proworkload/proworkloadlist.js b/pro/src/main/resources/template/js/proworkload/proworkloadlist.js index 5fe9690f8659ba26552643bce0bfab38c8ac8ff0..8b387a382076774568bd681ca3b82a21debdaf36 100644 --- a/pro/src/main/resources/template/js/proworkload/proworkloadlist.js +++ b/pro/src/main/resources/template/js/proworkload/proworkloadlist.js @@ -88,7 +88,7 @@ layui.config({ var msg = '确认从工作流中撤销选中数据吗?'; layer.confirm(msg, { icon: 3, title: '撤销任务审批申请' }, function (index) { layer.close(index); - AjaxPostUtil.request({url: flowableBasePath + "proworkload005", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ + AjaxPostUtil.request({url: flowableBasePath + "proworkload005", params:{processInstanceId: data.processInstanceId}, type: 'json', method: "PUT", callback: function(json){ if(json.returnCode == 0){ winui.window.msg("提交成功", {icon: 1, time: 2000}); loadTable(); diff --git a/web/src/main/resources/template/assets/lib/layui/customer/erpOrderUtil.js b/web/src/main/resources/template/assets/lib/layui/customer/erpOrderUtil.js index 22ee2c5d02910beaa54b8b7c1b26e7d2ae86191b..f2b5299708bc6e6caff2d9924186f1894f567f51 100644 --- a/web/src/main/resources/template/assets/lib/layui/customer/erpOrderUtil.js +++ b/web/src/main/resources/template/assets/lib/layui/customer/erpOrderUtil.js @@ -168,7 +168,7 @@ var erpOrderUtil = { processInstanceId: processInstanceId, orderType: orderType }; - AjaxPostUtil.request({url: flowableBasePath + "erpcommon003", params: params, method: "GET", type: 'json', callback: function(json) { + AjaxPostUtil.request({url: flowableBasePath + "erpcommon003", params: params, type: 'json', method: "PUT", callback: function(json) { if(json.returnCode == 0) { winui.window.msg("撤销成功。", {icon: 1,time: 2000}); if(typeof(callback) == "function") {