修改delete和put为post方式、审批流程修改

des
吕天方 8 months ago
parent 5cc6c060c2
commit 871ed970bf

@ -5,7 +5,7 @@ VUE_APP_TITLE = 金鸡湖现代服务业品牌管理系统
ENV = 'development'
# 金鸡湖现代服务业品牌管理系统/开发环境
VUE_APP_BASE_API = 'http://192.168.0.105:9040'
VUE_APP_BASE_API = 'http://192.168.0.106:9040'
# VUE_APP_BASE_API = 'http://39.101.188.84:9040'
# VUE_APP_BASE_API = 'https://idp.sipac.gov.cn/api'

@ -1,6 +1,6 @@
{
"name": "ruoyi",
"version": "1.0.202407041438",
"version": "1.0.202407051036",
"description": "金鸡湖现代服务业品牌管理系统",
"author": "若依",
"license": "MIT",

@ -21,8 +21,8 @@ export function enterpriseBasicInfoNew(data) {
// 修改企业基础信息
export function enterpriseBasicInfoChange(data) {
return request({
url: "/system/enterpriseBasicInfo",
method: "put",
url: "/system/enterpriseBasicInfo/edit",
method: "post",
data
})
}
@ -39,7 +39,7 @@ export function enterpriseBasicInfoId(id) {
export function enterpriseBasicInfoDel(params) {
return request({
url: "/system/enterpriseBasicInfo" + id,
method: "delete",
method: "post",
params
})
}

@ -21,8 +21,8 @@ export function jEnterpriseContactNew(data) {
// 删除企业联系人
export function jEnterpriseContactChange(data) {
return request({
url: "/jjh/jEnterpriseContact",
method: "put",
url: "/jjh/jEnterpriseContact/edit",
method: "post",
data
})
}
@ -39,7 +39,7 @@ export function jEnterpriseContactId(id) {
export function jEnterpriseContactDel(params) {
return request({
url: "/jjh/jEnterpriseContact",
method: "delete",
method: "post",
params
})
}

@ -22,7 +22,7 @@ export function jSmartRemindersNew(data) {
export function updateNdqChange(data) {
return request({
url: "/jjh/jSmartReminders/updateNdq",
method: "put",
method: "post",
data
})
}
@ -31,7 +31,7 @@ export function updateNdqChange(data) {
export function updateDqChange(data) {
return request({
url: "/jjh/jSmartReminders/updateDq",
method: "put",
method: "post",
data
})
}
@ -48,7 +48,7 @@ export function jSmartRemindersId(id) {
export function jSmartRemindersDel(params) {
return request({
url: "/jjh/jSmartReminders",
method: "delete",
method: "post",
params
})
}

@ -21,8 +21,8 @@ export function jPolicyFileNew(data) {
// 修改政策文件
export function jPolicyFileChange(data) {
return request({
url: "/jjh/jPolicyFile",
method: "put",
url: "/jjh/jPolicyFile/edit",
method: "post",
data
})
}
@ -39,7 +39,7 @@ export function jPolicyFileId(id) {
export function jPolicyFileDel(params) {
return request({
url: "/jjh/jPolicyFile",
method: "delete",
method: "post",
params
})
}

@ -19,7 +19,7 @@ export function jProjectId(id) {
export function jProjectDel(params) {
return request({
url: "/jjh/jProject",
method: "delete",
method: "post",
params
})
}
@ -71,17 +71,16 @@ export function postJMemorandum(data) {
// 修改备忘录
export function putJMemorandum(data) {
return request({
url: "/jjh/jMemorandum",
method: "put",
url: "/jjh/jMemorandum/edit",
method: "post",
data
})
}
// 删除备忘录
export function delJMemorandum(params) {
export function delJMemorandum(id) {
return request({
url: "/jjh/jMemorandum",
method: "delete",
params
url: "/jjh/jMemorandum" + id,
method: "post",
})
}

@ -36,7 +36,7 @@ export function getCacheValue(cacheName, cacheKey) {
export function clearCacheName(cacheName) {
return request({
url: '/monitor/cache/clearCacheName/' + cacheName,
method: 'delete'
method: 'post'
})
}
@ -44,7 +44,7 @@ export function clearCacheName(cacheName) {
export function clearCacheKey(cacheKey) {
return request({
url: '/monitor/cache/clearCacheKey/' + cacheKey,
method: 'delete'
method: 'post'
})
}
@ -52,6 +52,6 @@ export function clearCacheKey(cacheKey) {
export function clearCacheAll() {
return request({
url: '/monitor/cache/clearCacheAll',
method: 'delete'
method: 'post'
})
}

@ -29,8 +29,8 @@ export function addJob(data) {
// 修改定时任务调度
export function updateJob(data) {
return request({
url: '/monitor/job',
method: 'put',
url: '/monitor/job/edit',
method: 'post',
data: data
})
}
@ -39,7 +39,7 @@ export function updateJob(data) {
export function delJob(jobId) {
return request({
url: '/monitor/job/' + jobId,
method: 'delete'
method: 'post'
})
}
@ -51,7 +51,7 @@ export function changeJobStatus(jobId, status) {
}
return request({
url: '/monitor/job/changeStatus',
method: 'put',
method: 'post',
data: data
})
}
@ -65,7 +65,7 @@ export function runJob(jobId, jobGroup) {
}
return request({
url: '/monitor/job/run',
method: 'put',
method: 'post',
data: data
})
}

@ -13,7 +13,7 @@ export function listJobLog(query) {
export function delJobLog(jobLogId) {
return request({
url: '/monitor/jobLog/' + jobLogId,
method: 'delete'
method: 'post'
})
}
@ -21,6 +21,6 @@ export function delJobLog(jobLogId) {
export function cleanJobLog() {
return request({
url: '/monitor/jobLog/clean',
method: 'delete'
method: 'post'
})
}

@ -13,7 +13,7 @@ export function list(query) {
export function delLogininfor(infoId) {
return request({
url: '/monitor/logininfor/' + infoId,
method: 'delete'
method: 'post'
})
}
@ -29,6 +29,6 @@ export function unlockLogininfor(userName) {
export function cleanLogininfor() {
return request({
url: '/monitor/logininfor/clean',
method: 'delete'
method: 'post'
})
}

@ -13,6 +13,6 @@ export function list(query) {
export function forceLogout(tokenId) {
return request({
url: '/monitor/online/' + tokenId,
method: 'delete'
method: 'post'
})
}

@ -13,7 +13,7 @@ export function list(query) {
export function delOperlog(operId) {
return request({
url: '/monitor/operlog/' + operId,
method: 'delete'
method: 'post'
})
}
@ -21,6 +21,6 @@ export function delOperlog(operId) {
export function cleanOperlog() {
return request({
url: '/monitor/operlog/clean',
method: 'delete'
method: 'post'
})
}

@ -103,8 +103,8 @@ export function addProjectSettlementAward(data) {
// 编辑-项目落户奖补-1
export function putProjectSettlementAward(data) {
return request({
url: '/system/projectSettlementAward',
method: 'put',
url: '/system/projectSettlementAward/edit',
method: 'post',
data: data
})
}
@ -121,8 +121,8 @@ export function addBigStrongAward(data) {
// 编辑-做大做强奖补-2
export function putBigStrongAward(data) {
return request({
url: '/system/bigStrongAward',
method: 'put',
url: '/system/bigStrongAward/edit',
method: 'post',
data: data
})
}
@ -139,8 +139,8 @@ export function addCarrierConstructionAward(data) {
// 编辑-载体建设奖补-3
export function putCarrierConstructionAward(data) {
return request({
url: '/system/carrierConstructionAward',
method: 'put',
url: '/system/carrierConstructionAward/edit',
method: 'post',
data: data
})
}
@ -157,8 +157,8 @@ export function addPlatformConstructionAward(data) {
// 编辑-平台建设奖补-4
export function putPlatformConstructionAward(data) {
return request({
url: '/system/platformConstructionAward',
method: 'put',
url: '/system/platformConstructionAward/edit',
method: 'post',
data: data
})
}
@ -175,8 +175,8 @@ export function addBrandingAward(data) {
// 编辑-品牌打造奖补-5
export function putBrandingAward(data) {
return request({
url: '/system/brandingAward',
method: 'put',
url: '/system/brandingAward/edit',
method: 'post',
data: data
})
}
@ -193,8 +193,8 @@ export function addSceneOpeningAward(data) {
// 编辑-场景开放奖补-6
export function putSceneOpeningAward(data) {
return request({
url: '/system/sceneOpeningAward',
method: 'put',
url: '/system/sceneOpeningAward/edit',
method: 'post',
data: data
})
}
@ -211,8 +211,8 @@ export function addCreditManagement(data) {
// 编辑-信用管理奖补-7
export function putCreditManagement(data) {
return request({
url: '/system/creditManagement',
method: 'put',
url: '/system/creditManagement/edit',
method: 'post',
data: data
})
}
@ -229,8 +229,8 @@ export function addIndustrialInternetAward(data) {
// 编辑-5G+工业互联网奖补-8
export function putIndustrialInternetAward(data) {
return request({
url: '/system/industrialInternetAward',
method: 'put',
url: '/system/industrialInternetAward/edit',
method: 'post',
data: data
})
}
@ -247,8 +247,8 @@ export function addManufacturingServicesAward(data) {
// 编辑-制造服务业有效投入奖补-9
export function putManufacturingServicesAward(data) {
return request({
url: '/system/manufacturingServicesAward',
method: 'put',
url: '/system/manufacturingServicesAward/edit',
method: 'post',
data: data
})
}
@ -265,8 +265,8 @@ export function addLogisticsDevelopmentAward(data) {
// 编辑-物流发展奖补-10
export function putLogisticsDevelopmentAward(data) {
return request({
url: '/system/logisticsDevelopmentAward',
method: 'put',
url: '/system/logisticsDevelopmentAward/edit',
method: 'post',
data: data
})
}
@ -283,8 +283,8 @@ export function addIntegrationIndustries(data) {
// 编辑-两业融合奖补-11
export function putIntegrationIndustries(data) {
return request({
url: '/system/integrationIndustries',
method: 'put',
url: '/system/integrationIndustries/edit',
method: 'post',
data: data
})
}
@ -301,8 +301,8 @@ export function addOutQuitProducts(data) {
// 编辑-2024年度淘汰落后和退出低端低效产能装备清单模板-12
export function putOutQuitProducts(data) {
return request({
url: '/system/outQuitProducts',
method: 'put',
url: '/system/outQuitProducts/edit',
method: 'post',
data: data
})
}
@ -313,7 +313,7 @@ export function putOutQuitProducts(data) {
export function templateOneUpdata(data){
return request({
url: '/system/projectSettlementAward/update',
method: 'put',
method: 'post',
data: data
})
}
@ -322,7 +322,7 @@ export function templateOneUpdata(data){
export function templateTwoUpdata(data){
return request({
url: '/system/bigStrongAward/update',
method: 'put',
method: 'post',
data: data
})
}
@ -331,7 +331,7 @@ export function templateTwoUpdata(data){
export function templateThreeUpdata(data){
return request({
url: '/system/carrierConstructionAward/update',
method: 'put',
method: 'post',
data: data
})
}
@ -340,7 +340,7 @@ export function templateThreeUpdata(data){
export function templateFourUpdata(data){
return request({
url: '/system/platformConstructionAward/update',
method: 'put',
method: 'post',
data: data
})
}
@ -349,7 +349,7 @@ export function templateFourUpdata(data){
export function templateFiveUpdata(data){
return request({
url: '/system/brandingAward/update',
method: 'put',
method: 'post',
data: data
})
}
@ -358,7 +358,7 @@ export function templateFiveUpdata(data){
export function templateSixUpdata(data){
return request({
url: '/system/sceneOpeningAward/update',
method: 'put',
method: 'post',
data: data
})
}
@ -367,7 +367,7 @@ export function templateSixUpdata(data){
export function templateSevenUpdata(data){
return request({
url: '/system/creditManagement/update',
method: 'put',
method: 'post',
data: data
})
}
@ -376,7 +376,7 @@ export function templateSevenUpdata(data){
export function templateEightUpdata(data){
return request({
url: '/system/industrialInternetAward/update',
method: 'put',
method: 'post',
data: data
})
}
@ -385,7 +385,7 @@ export function templateEightUpdata(data){
export function templateNineUpdata(data){
return request({
url: '/system/manufacturingServicesAward/update',
method: 'put',
method: 'post',
data: data
})
}
@ -394,7 +394,7 @@ export function templateNineUpdata(data){
export function templateTenUpdata(data){
return request({
url: '/system/logisticsDevelopmentAward/update',
method: 'put',
method: 'post',
data: data
})
}
@ -403,7 +403,7 @@ export function templateTenUpdata(data){
export function templateElevenUpdata(data){
return request({
url: '/system/integrationIndustries/update',
method: 'put',
method: 'post',
data: data
})
}
@ -412,7 +412,7 @@ export function templateElevenUpdata(data){
export function templateProductsUpdata(data){
return request({
url: '/system/outQuitProducts/update',
method: 'put',
method: 'post',
data: data
})
}

@ -49,8 +49,8 @@ export function addTemplateRecord(data) {
// 编辑企业名录
export function putTemplateRecord(data) {
return request({
url: '/system/templateRecord',
method: 'put',
url: '/system/templateRecord/edit',
method: 'post',
data: data
})
}

@ -40,7 +40,7 @@ export function addTemplateRecord(data) {
export function approvalEdit(data) {
return request({
url: '/system/declarationRecords/approvalEdit',
method: 'put',
method: 'post',
data: data
})
}

@ -63,7 +63,7 @@ export function uploadFile(data) {
export function putMunicipalBureauReview(data) {
return request({
url: '/system/declarationRecords/municipalReviewNew',
method: 'put',
method: 'post',
data: data
})
}

@ -29,8 +29,8 @@ export function addBigStrongAward(data) {
// 修改做大做强奖详情
export function updateBigStrongAward(data) {
return request({
url: '/system/bigStrongAward',
method: 'put',
url: '/system/bigStrongAward/edit',
method: 'post',
data: data
})
}
@ -39,6 +39,6 @@ export function updateBigStrongAward(data) {
export function delBigStrongAward(id) {
return request({
url: '/system/bigStrongAward/' + id,
method: 'delete'
method: 'post'
})
}

@ -29,8 +29,8 @@ export function addBrandingAward(data) {
// 修改品牌打造奖补
export function updateBrandingAward(data) {
return request({
url: '/system/brandingAward',
method: 'put',
url: '/system/brandingAward/edit',
method: 'post',
data: data
})
}
@ -39,6 +39,6 @@ export function updateBrandingAward(data) {
export function delBrandingAward(id) {
return request({
url: '/system/brandingAward/' + id,
method: 'delete'
method: 'post'
})
}

@ -29,8 +29,8 @@ export function addCarrierConstructionAward(data) {
// 修改载体建设奖补
export function updateCarrierConstructionAward(data) {
return request({
url: '/system/carrierConstructionAward',
method: 'put',
url: '/system/carrierConstructionAward/edit',
method: 'post',
data: data
})
}
@ -39,6 +39,6 @@ export function updateCarrierConstructionAward(data) {
export function delCarrierConstructionAward(id) {
return request({
url: '/system/carrierConstructionAward/' + id,
method: 'delete'
method: 'post'
})
}

@ -37,8 +37,8 @@ export function addConfig(data) {
// 修改参数配置
export function updateConfig(data) {
return request({
url: '/system/config',
method: 'put',
url: '/system/config/edit',
method: 'post',
data: data
})
}
@ -47,7 +47,7 @@ export function updateConfig(data) {
export function delConfig(configId) {
return request({
url: '/system/config/' + configId,
method: 'delete'
method: ' post'
})
}
@ -55,6 +55,6 @@ export function delConfig(configId) {
export function refreshCache() {
return request({
url: '/system/config/refreshCache',
method: 'delete'
method: ' post'
})
}

@ -37,8 +37,8 @@ export function addDept(data) {
// 修改部门
export function updateDept(data) {
return request({
url: '/system/dept',
method: 'put',
url: '/system/dept/edit',
method: 'post',
data: data
})
}
@ -47,6 +47,6 @@ export function updateDept(data) {
export function delDept(deptId) {
return request({
url: '/system/dept/' + deptId,
method: 'delete'
method: 'post'
})
}

@ -37,8 +37,8 @@ export function addData(data) {
// 修改字典数据
export function updateData(data) {
return request({
url: '/system/dict/data',
method: 'put',
url: '/system/dict/data/edit',
method: 'post',
data: data
})
}
@ -47,6 +47,6 @@ export function updateData(data) {
export function delData(dictCode) {
return request({
url: '/system/dict/data/' + dictCode,
method: 'delete'
method: 'post'
})
}

@ -29,8 +29,8 @@ export function addType(data) {
// 修改字典类型
export function updateType(data) {
return request({
url: '/system/dict/type',
method: 'put',
url: '/system/dict/type/edit',
method: 'post',
data: data
})
}
@ -39,7 +39,7 @@ export function updateType(data) {
export function delType(dictId) {
return request({
url: '/system/dict/type/' + dictId,
method: 'delete'
method: 'post'
})
}
@ -47,7 +47,7 @@ export function delType(dictId) {
export function refreshCache() {
return request({
url: '/system/dict/type/refreshCache',
method: 'delete'
method: 'post'
})
}

@ -29,8 +29,8 @@ export function addEnterpriseBasicInfo(data) {
// 修改企业基础信息
export function updateEnterpriseBasicInfo(data) {
return request({
url: '/system/enterpriseBasicInfo',
method: 'put',
url: '/system/enterpriseBasicInfo/edit',
method: 'post',
data: data
})
}
@ -39,6 +39,6 @@ export function updateEnterpriseBasicInfo(data) {
export function delEnterpriseBasicInfo(id) {
return request({
url: '/system/enterpriseBasicInfo/' + id,
method: 'delete'
method: 'post'
})
}

@ -29,8 +29,8 @@ export function addFundingInfo(data) {
// 修改资金信息
export function updateFundingInfo(data) {
return request({
url: '/system/fundingInfo',
method: 'put',
url: '/system/fundingInfo/edit',
method: 'post',
data: data
})
}
@ -39,6 +39,6 @@ export function updateFundingInfo(data) {
export function delFundingInfo(id) {
return request({
url: '/system/fundingInfo/' + id,
method: 'delete'
method: 'post'
})
}

@ -29,8 +29,8 @@ export function addIndustrialInternetAward(data) {
// 修改5G+工业互联网奖补
export function updateIndustrialInternetAward(data) {
return request({
url: '/system/industrialInternetAward',
method: 'put',
url: '/system/industrialInternetAward/edit',
method: 'post',
data: data
})
}
@ -39,6 +39,6 @@ export function updateIndustrialInternetAward(data) {
export function delIndustrialInternetAward(id) {
return request({
url: '/system/industrialInternetAward/' + id,
method: 'delete'
method: 'post'
})
}

@ -13,7 +13,7 @@ export function list(query) {
export function delLogininfor(infoId) {
return request({
url: '/system/logininfor/' + infoId,
method: 'delete'
method: 'post'
})
}
@ -28,6 +28,6 @@ export function unlockLogininfor(userName) {
export function cleanLogininfor() {
return request({
url: '/system/logininfor/clean',
method: 'delete'
method: 'post'
})
}

@ -29,8 +29,8 @@ export function addLogisticsDevelopmentAward(data) {
// 修改物流发展奖补
export function updateLogisticsDevelopmentAward(data) {
return request({
url: '/system/logisticsDevelopmentAward',
method: 'put',
url: '/system/logisticsDevelopmentAward/edit',
method: 'post',
data: data
})
}
@ -39,6 +39,6 @@ export function updateLogisticsDevelopmentAward(data) {
export function delLogisticsDevelopmentAward(id) {
return request({
url: '/system/logisticsDevelopmentAward/' + id,
method: 'delete'
method: 'post'
})
}

@ -29,8 +29,8 @@ export function addManufacturingServicesAward(data) {
// 修改制造服务业有效投入奖补
export function updateManufacturingServicesAward(data) {
return request({
url: '/system/manufacturingServicesAward',
method: 'put',
url: '/system/manufacturingServicesAward/edit',
method: 'post',
data: data
})
}
@ -39,6 +39,6 @@ export function updateManufacturingServicesAward(data) {
export function delManufacturingServicesAward(id) {
return request({
url: '/system/manufacturingServicesAward/' + id,
method: 'delete'
method: 'post'
})
}

@ -46,7 +46,7 @@ export function addMenu(data) {
export function updateMenu(data) {
return request({
url: '/system/menu',
method: 'put',
method: 'post/edit',
data: data
})
}
@ -55,6 +55,6 @@ export function updateMenu(data) {
export function delMenu(menuId) {
return request({
url: '/system/menu/' + menuId,
method: 'delete'
method: 'post'
})
}

@ -29,8 +29,8 @@ export function addNotice(data) {
// 修改公告
export function updateNotice(data) {
return request({
url: '/system/notice',
method: 'put',
url: '/system/notice/edit',
method: 'post',
data: data
})
}
@ -39,6 +39,6 @@ export function updateNotice(data) {
export function delNotice(noticeId) {
return request({
url: '/system/notice/' + noticeId,
method: 'delete'
method: 'post'
})
}

@ -13,7 +13,7 @@ export function list(query) {
export function delOperlog(operId) {
return request({
url: '/system/operlog/' + operId,
method: 'delete'
method: 'post'
})
}
@ -21,6 +21,6 @@ export function delOperlog(operId) {
export function cleanOperlog() {
return request({
url: '/system/operlog/clean',
method: 'delete'
method: 'post'
})
}

@ -29,8 +29,8 @@ export function addPlatformConstructionAward(data) {
// 修改平台建设奖补
export function updatePlatformConstructionAward(data) {
return request({
url: '/system/platformConstructionAward',
method: 'put',
url: '/system/platformConstructionAward/edit',
method: 'post',
data: data
})
}
@ -39,6 +39,6 @@ export function updatePlatformConstructionAward(data) {
export function delPlatformConstructionAward(id) {
return request({
url: '/system/platformConstructionAward/' + id,
method: 'delete'
method: 'post'
})
}

@ -29,8 +29,8 @@ export function addPost(data) {
// 修改岗位
export function updatePost(data) {
return request({
url: '/system/post',
method: 'put',
url: '/system/post/edit',
method: 'post',
data: data
})
}
@ -39,6 +39,6 @@ export function updatePost(data) {
export function delPost(postId) {
return request({
url: '/system/post/' + postId,
method: 'delete'
method: 'post'
})
}

@ -29,8 +29,8 @@ export function addProjectSettlementAward(data) {
// 修改项目落户奖补
export function updateProjectSettlementAward(data) {
return request({
url: '/system/projectSettlementAward',
method: 'put',
url: '/system/projectSettlementAward/edit',
method: 'post',
data: data
})
}
@ -39,6 +39,6 @@ export function updateProjectSettlementAward(data) {
export function delProjectSettlementAward(id) {
return request({
url: '/system/projectSettlementAward/' + id,
method: 'delete'
method: 'post'
})
}

@ -29,8 +29,8 @@ export function addRole(data) {
// 修改角色
export function updateRole(data) {
return request({
url: '/system/role',
method: 'put',
url: '/system/role/edit',
method: 'post',
data: data
})
}
@ -39,7 +39,7 @@ export function updateRole(data) {
export function dataScope(data) {
return request({
url: '/system/role/dataScope',
method: 'put',
method: 'post',
data: data
})
}
@ -52,7 +52,7 @@ export function changeRoleStatus(roleId, status) {
}
return request({
url: '/system/role/changeStatus',
method: 'put',
method: 'post',
data: data
})
}
@ -61,7 +61,7 @@ export function changeRoleStatus(roleId, status) {
export function delRole(roleId) {
return request({
url: '/system/role/' + roleId,
method: 'delete'
method: 'post'
})
}
@ -87,7 +87,7 @@ export function unallocatedUserList(query) {
export function authUserCancel(data) {
return request({
url: '/system/role/authUser/cancel',
method: 'put',
method: 'post',
data: data
})
}
@ -96,7 +96,7 @@ export function authUserCancel(data) {
export function authUserCancelAll(data) {
return request({
url: '/system/role/authUser/cancelAll',
method: 'put',
method: 'post',
params: data
})
}
@ -105,7 +105,7 @@ export function authUserCancelAll(data) {
export function authUserSelectAll(data) {
return request({
url: '/system/role/authUser/selectAll',
method: 'put',
method: 'post',
params: data
})
}

@ -29,8 +29,8 @@ export function addSceneOpeningAward(data) {
// 修改场景开放奖补
export function updateSceneOpeningAward(data) {
return request({
url: '/system/sceneOpeningAward',
method: 'put',
url: '/system/sceneOpeningAward/edit',
method: 'post',
data: data
})
}
@ -39,6 +39,6 @@ export function updateSceneOpeningAward(data) {
export function delSceneOpeningAward(id) {
return request({
url: '/system/sceneOpeningAward/' + id,
method: 'delete'
method: 'post'
})
}

@ -29,8 +29,8 @@ export function addTemplateInfo(data) {
// 修改申报模板信息
export function updateTemplateInfo(data) {
return request({
url: '/system/templateInfo',
method: 'put',
url: '/system/templateInfo/edit',
method: 'psot',
data: data
})
}
@ -39,6 +39,6 @@ export function updateTemplateInfo(data) {
export function delTemplateInfo(id) {
return request({
url: '/system/templateInfo/' + id,
method: 'delete'
method: 'post'
})
}

@ -30,8 +30,8 @@ export function addUser(data) {
// 修改用户
export function updateUser(data) {
return request({
url: '/system/user',
method: 'put',
url: '/system/user/edit',
method: 'post',
data: data
})
}
@ -40,7 +40,7 @@ export function updateUser(data) {
export function delUser(userId) {
return request({
url: '/system/user/' + userId,
method: 'delete'
method: 'post'
})
}
@ -52,7 +52,7 @@ export function resetUserPwd(userId, password) {
}
return request({
url: '/system/user/resetPwd',
method: 'put',
method: 'post',
data: data
})
}
@ -65,7 +65,7 @@ export function changeUserStatus(userId, status) {
}
return request({
url: '/system/user/changeStatus',
method: 'put',
method: 'post',
data: data
})
}
@ -82,7 +82,7 @@ export function getUserProfile() {
export function updateUserProfile(data) {
return request({
url: '/system/user/profile',
method: 'put',
method: 'psot',
data: data
})
}
@ -95,7 +95,7 @@ export function updateUserPwd(oldPassword, newPassword) {
}
return request({
url: '/system/user/profile/updatePwd',
method: 'put',
method: 'post',
params: data
})
}
@ -121,7 +121,7 @@ export function getAuthRole(userId) {
export function updateAuthRole(data) {
return request({
url: '/system/user/authRole',
method: 'put',
method: 'psot',
params: data
})
}

@ -28,8 +28,8 @@ export function getGenTable(tableId) {
// 修改代码生成信息
export function updateGenTable(data) {
return request({
url: '/tool/gen',
method: 'put',
url: '/tool/gen/edit',
method: 'post',
data: data
})
}
@ -64,7 +64,7 @@ export function previewTable(tableId) {
export function delTable(tableId) {
return request({
url: '/tool/gen/' + tableId,
method: 'delete'
method: ' post'
})
}

@ -622,12 +622,38 @@
height: 100%;
background-color: #fff;
padding: 27px 24px 0 27px;
.el-step__head.is-process {
color: #192a92;
}
.el-step__line {
background-color: #192a92;
}
.el-step__icon{
border: 2px solid #192A92;
}
.el-tabs--border-card {
border: none;
box-shadow: none;
-webkit-box-shadow: none;
height: 100%;
}
.el-step__title {
font-size: 12px;
color: #192a92;
border-color: none;
}
.projectProgress-title {
// font-family: PingFang-SC, PingFang-SC;
font-weight: bold;
font-size: 14px;
color: #333333;
margin-bottom: 47px;
// margin-bottom: 47px;
}
.left_title {
height: 77px;
padding-top: 20px;
background-color: #fff;
margin-bottom: 4px;
}
.schedule-timeline {
overflow-y: scroll;

@ -57,7 +57,11 @@ router.beforeEach((to, from, next) => {
// }
store.dispatch("LogOut").then(() => {
Message.error(err);
// Message.error(err);
// let url = window.location.href;
// var modifiedUrl = url.replace(/(\?appid&clienttoken=)[^&#]+/, '');
// // console.log(modifiedUrl,'modifiedUrl');
// window.location.href = modifiedUrl;
next({ path: "/" });
});
// store.dispatch("LogOut").then(() => {

@ -170,7 +170,14 @@ const user = {
// 退出系统
LogOut({ commit, state }) {
if(state.userType == "01") {
if(!state.token && state.clientToken) {
enterpriseLogout({clienttoken: state.clientToken}).then(()=>{
commit('SET_CLIENTTOKEN', '')
removeClientToken()
}).catch(error => {
reject(error)
})
} else if(state.userType == "01") {
return new Promise((resolve, reject) => {
enterpriseLogout({clienttoken: state.clientToken}).then(()=>{
commit('SET_CLIENTTOKEN', '')

@ -279,7 +279,7 @@ export default {
type: "warning",
})
.then(() => {
delJMemorandum({ id: row.id }).then((res) => {
delJMemorandum(row.id).then((res) => {
this.getList();
this.$message({
type: "success",

@ -3276,10 +3276,13 @@
>
</span>
<div class="contain_main">
<div>{{ item.approvalByName }}</div>
<div v-if="item.approvalByName && item.approvalStatus == 1">{{ item.approvalByName }}</div>
<div v-show="item.approvalOpinions">
审核意见{{ item.approvalOpinions }}
</div>
<div>
企业名称{{ item.enterpriseName }}
</div>
<div class="attach">
<div v-if="!item.approvalAttachment"></div>
<div class="attach_left" v-if="item.approvalAttachment">

@ -1,73 +1,88 @@
<template>
<div class="L-projectProgress" id="L-size-main-right">
<div class="projectProgress-title" id="L-xiangmujinzhan">项目进展</div>
<div class="schedule-timeline" :style="Mystyle">
<el-timeline>
<el-timeline-item
v-for="(activity, index) in flow"
:key="index"
size="large"
:class="activity.approvalStatus == 1 || activity.approvalStatus == 0 ? 'timeline-item-green' : activity.approvalStatus == 2 ? 'timeline-item-red' : ''"
>
<div slot="dot" class="timeline-dot" :class="activity.approvalStatus == 2 ? 'timeline-dot-red' : ''">
<i class="icon iconfont" :class="activity.approvalStatus == 1 || activity.approvalStatus == 0 ? 'icon-jc-dian-green' : activity.approvalStatus == 2 ? 'icon-jc-dian' : ''"></i>
</div>
<el-card> <!-- 去除阴影 shadow="never -->
<div class="schedule-content">
<div class="card-content-left">
<div class="schedule-card-title">{{ activity.approvalByName }}</div>
<!-- <div class="schedule-card-title" v-if="false"></div> -->
<!-- <div class="schedule-card-title" v-if="activity.sort == 1 && activity.approvalStatus == 0"></div>
<div class="schedule-card-title" v-if="activity.sort == 1 && activity.approvalStatus == 1"></div>
<div class="schedule-card-title" v-if="activity.sort == 1 && activity.approvalStatus == 2"></div>
<div class="schedule-card-title" v-if="activity.sort == 2 && activity.approvalStatus == 0"></div>
<div class="schedule-card-title" v-if="activity.sort == 2 && activity.approvalStatus == 1"></div>
<div class="schedule-card-title" v-if="activity.sort == 2 && activity.approvalStatus == 2"></div>
<div class="schedule-card-title" v-if="activity.sort == 3 && activity.approvalStatus == 0"></div>
<div class="schedule-card-title" v-if="activity.sort == 3 && activity.approvalStatus == 1"></div>
<div class="schedule-card-title" v-if="activity.sort == 3 && activity.approvalStatus == 2"></div>
<div class="schedule-card-title" v-if="activity.sort == 4 && activity.approvalStatus == 0"></div>
<div class="schedule-card-title" v-if="activity.sort == 4 && activity.approvalStatus == 1"></div>
<div class="schedule-card-title" v-if="activity.sort == 4 && activity.approvalStatus == 2"></div> -->
<div class="card-content-one" v-show="activity.approvalStatus == 0 && activity.approvalAttachment">
<span>提醒</span>
<span>已提交xxx材料</span>
</div>
<!-- <div class="card-content-one" v-show="activity.approvalStatus == 2">
<span>提醒</span>
<span>请xxx专家审核</span>
</div> -->
<div class="card-content-one" v-show="activity.approvalStatus == 1">
<span>审核结果</span>
<span>{{ activity.approvalByName }}审核通过</span>
</div>
<div class="card-content-one" v-show="activity.approvalStatus == 2">
<span>审核结果</span>
<span>{{ activity.approvalByName }}审核不通过</span>
</div>
<div class="card-content-two" v-show="activity.approvalOpinions">
<span>审核意见</span>
<span>{{ activity.approvalOpinions }}</span>
</div>
<div class="card-content-two" v-if="activity.approvalAttachment">
<span>附件</span>
<a :href="VUE_APP_BASE_API + activity.approvalAttachment" target="_blank">{{ activity.approvalAttachment.split("/")[activity.approvalAttachment.split("/").length - 1] }}</a>
</div>
<div class="card-content-two" v-if="!activity.approvalAttachment">
<span>附件</span>
<a></a>
</div>
<div class="card-content-three">{{ activity.approvalTime }}</div>
<!-- <div class="card-content-three-red" v-show="activity.approvalStatus == 2">2023-06-20</div> -->
</div>
<div class="card-content-right">
<i class="icon iconfont" :class="activity.approvalStatus == 2 ? 'icon-jc-yijujue' : activity.approvalStatus == 1 ? 'icon-jc-shenpitongguo-copy' : activity.approvalStatus == 0 ? 'icon-jc-daishenpi1-copy' : activity.approvalStatus == 3 ? 'icon-jc-yijujue' : ''"></i>
</div>
</div>
</el-card>
</el-timeline-item>
</el-timeline>
<div class="left_title">
<el-steps :active="active" finish-status="process" align-center>
<el-step title="初审"></el-step>
<el-step title="复审"></el-step>
<el-step title="终审"></el-step>
</el-steps>
</div>
<el-tabs type="border-card" :style="Mystyle">
<el-tab-pane label="审批流程">
<div class="schedule-timeline" :style="newStyle">
<el-timeline>
<el-timeline-item
v-for="(activity, index) in flow"
:key="index"
size="large"
:class="activity.approvalStatus == 1 || activity.approvalStatus == 0 ? 'timeline-item-green' : activity.approvalStatus == 2 ? 'timeline-item-red' : ''"
>
<div slot="dot" class="timeline-dot" :class="activity.approvalStatus == 2 ? 'timeline-dot-red' : ''">
<i class="icon iconfont" :class="activity.approvalStatus == 1 || activity.approvalStatus == 0 ? 'icon-jc-dian-green' : activity.approvalStatus == 2 ? 'icon-jc-dian' : ''"></i>
</div>
<el-card> <!-- 去除阴影 shadow="never -->
<div class="schedule-content">
<div class="card-content-left">
<div class="schedule-card-title" v-if="activity.approvalByName && activity.approvalStatus == 1">{{ activity.approvalByName }}</div>
<!-- <div class="schedule-card-title" v-if="false"></div> -->
<!-- <div class="schedule-card-title" v-if="activity.sort == 1 && activity.approvalStatus == 0"></div>
<div class="schedule-card-title" v-if="activity.sort == 1 && activity.approvalStatus == 1"></div>
<div class="schedule-card-title" v-if="activity.sort == 1 && activity.approvalStatus == 2"></div>
<div class="schedule-card-title" v-if="activity.sort == 2 && activity.approvalStatus == 0"></div>
<div class="schedule-card-title" v-if="activity.sort == 2 && activity.approvalStatus == 1"></div>
<div class="schedule-card-title" v-if="activity.sort == 2 && activity.approvalStatus == 2"></div>
<div class="schedule-card-title" v-if="activity.sort == 3 && activity.approvalStatus == 0"></div>
<div class="schedule-card-title" v-if="activity.sort == 3 && activity.approvalStatus == 1"></div>
<div class="schedule-card-title" v-if="activity.sort == 3 && activity.approvalStatus == 2"></div>
<div class="schedule-card-title" v-if="activity.sort == 4 && activity.approvalStatus == 0"></div>
<div class="schedule-card-title" v-if="activity.sort == 4 && activity.approvalStatus == 1"></div>
<div class="schedule-card-title" v-if="activity.sort == 4 && activity.approvalStatus == 2"></div> -->
<div class="card-content-one" v-show="activity.approvalStatus == 0 && activity.approvalAttachment">
<span>提醒</span>
<span>已提交xxx材料</span>
</div>
<!-- <div class="card-content-one" v-show="activity.approvalStatus == 2">
<span>提醒</span>
<span>请xxx专家审核</span>
</div> -->
<div class="card-content-one" v-show="activity.approvalStatus == 1">
<span>审核结果</span>
<span>{{ activity.approvalByName }}审核通过</span>
</div>
<div class="card-content-one" v-show="activity.approvalStatus == 2">
<span>审核结果</span>
<span>{{ activity.approvalByName }}审核不通过</span>
</div>
<div class="card-content-two" v-show="activity.approvalOpinions">
<span>审核意见</span>
<span>{{ activity.approvalOpinions }}</span>
</div>
<div class="card-content-two">
<span>企业名称</span>
<span>{{ activity.enterpriseName }}</span>
</div>
<div class="card-content-two" v-if="activity.approvalAttachment">
<span>附件</span>
<a :href="VUE_APP_BASE_API + activity.approvalAttachment" target="_blank">{{ activity.approvalAttachment.split("/")[activity.approvalAttachment.split("/").length - 1] }}</a>
</div>
<div class="card-content-two" v-if="!activity.approvalAttachment">
<span>附件</span>
<a></a>
</div>
<div class="card-content-three">{{ activity.approvalTime }}</div>
<!-- <div class="card-content-three-red" v-show="activity.approvalStatus == 2">2023-06-20</div> -->
</div>
<div class="card-content-right">
<i class="icon iconfont" :class="activity.approvalStatus == 2 ? 'icon-jc-yijujue' : activity.approvalStatus == 1 ? 'icon-jc-shenpitongguo-copy' : activity.approvalStatus == 0 ? 'icon-jc-daishenpi1-copy' : activity.approvalStatus == 3 ? 'icon-jc-yijujue' : ''"></i>
</div>
</div>
</el-card>
</el-timeline-item>
</el-timeline>
</div>
</el-tab-pane>
</el-tabs>
</div>
</template>
<script>
@ -88,7 +103,11 @@ export default {
Mystyle:{
height:"",
},
newStyle:{
height:"",
},
VUE_APP_BASE_API:process.env.VUE_APP_BASE_API,
active: 3,
}
},
mounted() {
@ -112,7 +131,8 @@ export default {
const header = document.getElementById('L-xiangmujinzhan'); // ID
const elementHeight = element.offsetHeight;
const headerHeight = header.offsetHeight;
this.Mystyle.height = elementHeight - headerHeight - 77 + 'px';
this.Mystyle.height = elementHeight - headerHeight - 120 + 'px';
this.newStyle.height = elementHeight - headerHeight - 170 + 'px';
}
},
}

@ -279,7 +279,7 @@ export default {
type: "warning",
})
.then(() => {
delJMemorandum({ id: row.id }).then((res) => {
delJMemorandum(row.id).then((res) => {
this.getList();
this.$message({
type: "success",

@ -51,6 +51,12 @@ export default {
default:()=>{
return {};
}
},
enterInfo:{
type:Object,
default:()=>{
return {}
}
}
},
watch: {
@ -121,7 +127,16 @@ export default {
}
this.$nextTick(()=>{
this.info = [...arr]
if(this.enterInfo.projectEndTime) {
let time = {
key:"预计完成时间",
value: this.enterInfo.projectEndTime
}
this.info = [...arr,time]
} else {
this.info = [...arr]
}
})
}

@ -155,10 +155,17 @@ export default {
methods:{
goEnterprice(creditCode){
// console.log(creditCode);
this.$router.push({
name: 'enterpriselibraryInfo',
query: { userId: this.info.id, creditCode: creditCode }
})
if(this.userType == '01') {
this.$router.push({
name: 'EenterInfo',
query: { userId: this.info.id, creditCode: creditCode }
})
} else {
this.$router.push({
name: 'enterpriselibraryInfo',
query: { userId: this.info.id, creditCode: creditCode }
})
}
},
},
}

@ -16,7 +16,7 @@
<div v-for="(item,index) in tabs" :key="index" class="tabs-top-item" :class="active == index ? 'active-item' : ''" @click="active = index">{{ item.name }}</div>
</div>
<div class="tabs-bottom" :style="tabStyle">
<tab-one v-if="active == 0" :detailedInfo="detailedInfo" :fileJson="fileJson"></tab-one>
<tab-one v-if="active == 0" :detailedInfo="detailedInfo" :fileJson="fileJson" :enterInfo="info"></tab-one>
<tab-two v-if="active == 1" :info="enterInfo"></tab-two>
<tab-three v-if="active == 2"></tab-three>
<tab-four v-if="active == 3" :id="$route.query.userId"></tab-four>
@ -136,10 +136,17 @@ export default {
},
goEnterprice(creditCode){
// console.log(creditCode);
this.$router.push({
name: 'enterpriselibraryInfo',
query: { userId: this.info.userId, creditCode: creditCode }
})
if(this.userType == '01') {
this.$router.push({
name: 'EenterInfo',
query: { userId: this.info.userId, creditCode: creditCode }
})
} else {
this.$router.push({
name: 'enterpriselibraryInfo',
query: { userId: this.info.userId, creditCode: creditCode }
})
}
},
//
cancalDebounce(){

@ -288,7 +288,8 @@ export default {
res.data.forEach(item => {
results.push({
value: item.qymc,
id: item.id
id: item.id,
tyshxydm: item.tyshxydm
})
})
})
@ -315,7 +316,7 @@ export default {
},
//
handleSelect(item) {
// console.log(item);
console.log(item);
if(this.checked == 0) {
this.$router.push({
name: 'enterpriselibraryInfo',

Loading…
Cancel
Save