From 5edd41fdafdac2b0f9a68b7da1cf6982df5e5a6d Mon Sep 17 00:00:00 2001 From: "zyx.net" Date: Wed, 13 Sep 2023 14:51:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B9=B3=E5=8F=B0=E4=BB=B6=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E5=BA=93=E6=9B=B4=E6=8D=A2=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/associatedplat.vue | 268 ++++++++++++++++++ .../components/listOfRegulations.vue | 10 + .../platformItemLibrary/index.vue | 10 +- .../components/ProjectDetails.vue | 16 +- .../components/batSetting.vue | 2 +- .../components/certificationActivity.vue | 2 +- .../components/addConfiguration.vue | 2 +- .../certificationList/components/addModel.vue | 8 +- .../components/batSetting.vue | 4 +- .../components/modifyHistoryList.vue | 2 +- .../components/referenceDeliverablesList.vue | 4 +- .../components/transferListvirtal.vue | 2 +- .../components/certificationList/index.vue | 44 +-- .../components/detilModel.vue | 1 + .../components/listEditModel.vue | 2 +- .../components/listOfRegulations.vue | 62 ++-- .../components/listOfRegulationsView.vue | 2 +- .../components/modifyOperator.vue | 2 +- .../components/nonConformance.vue | 8 +- .../components/regulatoryCompliance.vue | 2 +- .../components/resultReportedUpload.vue | 2 +- .../components/transferListvirtal.vue | 2 +- 22 files changed, 368 insertions(+), 89 deletions(-) create mode 100644 jero-web/src/views/projectManagement/components/associatedplat.vue diff --git a/jero-web/src/views/projectManagement/components/associatedplat.vue b/jero-web/src/views/projectManagement/components/associatedplat.vue new file mode 100644 index 000000000..40576fda4 --- /dev/null +++ b/jero-web/src/views/projectManagement/components/associatedplat.vue @@ -0,0 +1,268 @@ + + + + + \ No newline at end of file diff --git a/jero-web/src/views/projectManagement/components/listOfRegulations.vue b/jero-web/src/views/projectManagement/components/listOfRegulations.vue index fc315edc7..ae84ee04e 100644 --- a/jero-web/src/views/projectManagement/components/listOfRegulations.vue +++ b/jero-web/src/views/projectManagement/components/listOfRegulations.vue @@ -160,6 +160,12 @@ {{ $t('copy') }} + + +
+ + {{ $t('Associatedplatform') }} +
{ + getAction('/platform/projectRelatedPersonnel/queryPersonByProjectId', query).then((res) => { if (res.success) { this.regulatoryEngineerList = res.result.lawEngineerList || [] //法规工程师 this.engineeringInterfacePersonList = res.result.engineeringInterfacePersonList || [] //工程接口人 diff --git a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationActivity.vue b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationActivity.vue index b1deb6f1d..d4780313a 100644 --- a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationActivity.vue +++ b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationActivity.vue @@ -59,7 +59,7 @@ data() { return { url: { - getProjectDetailsStatistics: '/project/projectLibraryBase/getProjectDetailsStatistics' + getProjectDetailsStatistics: '/platform/projectLibraryBase/getProjectDetailsStatistics' }, certificationProgressMap: {}, num: '0', diff --git a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/addConfiguration.vue b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/addConfiguration.vue index 50f854958..168e68733 100644 --- a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/addConfiguration.vue +++ b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/addConfiguration.vue @@ -72,7 +72,7 @@ configItem: this.formInline.configItem } this.confirmLoading = true - postAction('/project/projectCertificationInventoryEO/addConfigByIds', query).then((res) => { + postAction('/platform/projectCertificationInventoryEO/addConfigByIds', query).then((res) => { if (res.success) { this.$message.success(this.$t('OperationSuccessful')) this.confirmLoading = false diff --git a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/addModel.vue b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/addModel.vue index 09fc9060d..8b77c7b5a 100644 --- a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/addModel.vue +++ b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/addModel.vue @@ -767,9 +767,9 @@ uploadName: '', numIndex: 0, url: { - add: '/project/projectCertificationInventoryEO/batchAdd', - edit: '/project/projectCertificationInventoryEO/edit', - list: '/project/projectLawsInventoryEO/list' + add: '/platform/projectCertificationInventoryEO/batchAdd', + edit: '/platform/projectCertificationInventoryEO/edit', + list: '/platform/projectLawsInventoryEO/list' }, engineeringInterfacePersonList: [] } @@ -1062,7 +1062,7 @@ projectId: this.$route.query.id, dutyTerritory: row } - getAction('/project/projectRelatedPersonnel/queryPersonByProjectId', query).then((res) => { + getAction('/platform/projectRelatedPersonnel/queryPersonByProjectId', query).then((res) => { if (res.success) { if (this.formInline.id) { this.engineeringInterfacePersonList = res.result.engineeringInterfacePersonList || [] //工程接口人 diff --git a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/batSetting.vue b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/batSetting.vue index b4d746f2f..e85e361cd 100644 --- a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/batSetting.vue +++ b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/batSetting.vue @@ -302,7 +302,7 @@ let url = '' this.confirmLoading = true if (this.name == this.$t('changeSetting')) { - url = '/project/projectCertificationInventoryEO/updateConfigItemBatch' + url = '/platform/projectCertificationInventoryEO/updateConfigItemBatch' } else { url = this.url.setBatch } @@ -369,7 +369,7 @@ projectId: this.$route.query.id, dutyTerritory: row } - getAction('/project/projectRelatedPersonnel/queryPersonByProjectId', query).then((res) => { + getAction('/platform/projectRelatedPersonnel/queryPersonByProjectId', query).then((res) => { if (res.success) { this.engineeringInterfacePersonList = res.result.engineeringInterfacePersonList || [] //工程接口人 } diff --git a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/modifyHistoryList.vue b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/modifyHistoryList.vue index 32eb8dcaf..42654f963 100644 --- a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/modifyHistoryList.vue +++ b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/modifyHistoryList.vue @@ -54,7 +54,7 @@ total: 0, projectCertificationInventoryId: '', url: { - list: '/project/projectCertificationInventoryLogEO/page' + list: '/platform/projectCertificationInventoryLogEO/page' }, columns: [ { diff --git a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/referenceDeliverablesList.vue b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/referenceDeliverablesList.vue index 2a67fb149..e67700add 100644 --- a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/referenceDeliverablesList.vue +++ b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/referenceDeliverablesList.vue @@ -144,7 +144,7 @@ ...this.queryParam } this.loading = true - postAction('project/projectLibraryBase/page', query).then((res) => { + postAction('platform/projectLibraryBase/page', query).then((res) => { if (res.success) { this.dataList = res.result.records || [] this.total = res.result.total @@ -177,7 +177,7 @@ return } this.confirmLoading = true - postAction('/project/projectCertificationInventoryEO/citeDeliverable', { + postAction('/platform/projectCertificationInventoryEO/citeDeliverable', { projectCertificationInventoryIds: this.ids, projectLibraryId: this.$route.query.id, citeProjectLibraryId: selectedRowKeys.join(',') diff --git a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/transferListvirtal.vue b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/transferListvirtal.vue index 973bd500f..cefbdf0dd 100644 --- a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/transferListvirtal.vue +++ b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/components/transferListvirtal.vue @@ -236,7 +236,7 @@ if (this.selectedRowKeys && this.selectedRowKeys.length > 0) { this.confirmLoading = true let selectedRowKeys = JSON.parse(JSON.stringify(this.selectedRowKeys)) - postAction('project/projectCertificationInventoryEO/callAdd', { + postAction('platform/projectCertificationInventoryEO/callAdd', { authDummyInventoryBaseId: this.dummyInventoryBaseId, projectLibraryId: this.$route.query.id, authDummyInventoryInfoIds: selectedRowKeys.join(',') diff --git a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/index.vue b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/index.vue index 7378538fb..1177bb49f 100644 --- a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/index.vue +++ b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/certificationList/index.vue @@ -645,17 +645,17 @@ ] }, url: { - list: '/project/projectCertificationInventoryEO/page', - exportTemplate: '/project/projectCertificationInventoryEO/exportTemplate', - exportData: '/project/projectCertificationInventoryEO/exportData', - deleteBatch: '/project/projectCertificationInventoryEO/deleteBatch', - setBatch: '/project/projectCertificationInventoryEO/setBatch', - deleteOne: '/project/projectCertificationInventoryEO/delete', - AndUserId: '/project/projectLibraryRoleRelEO/queryByProjectLibraryIdAndUserId', - AndUserIdEdit: '/project/projectLibraryRoleRelEO/edit', - saveBatch: '/project/projectCertificationInventoryEO/saveBatch', - questionUrl: '/project/projectCertificationInventoryEO/expediting', - importZipUrl: '/project/projectCertificationInventoryEO/importData' + list: '/platform/projectCertificationInventoryEO/page', + exportTemplate: '/platform/projectCertificationInventoryEO/exportTemplate', + exportData: '/platform/projectCertificationInventoryEO/exportData', + deleteBatch: '/platform/projectCertificationInventoryEO/deleteBatch', + setBatch: '/platform/projectCertificationInventoryEO/setBatch', + deleteOne: '/platform/projectCertificationInventoryEO/delete', + AndUserId: '/platform/projectLibraryRoleRelEO/queryByProjectLibraryIdAndUserId', + AndUserIdEdit: '/platform/projectLibraryRoleRelEO/edit', + saveBatch: '/platform/projectCertificationInventoryEO/saveBatch', + questionUrl: '/platform/projectCertificationInventoryEO/expediting', + importZipUrl: '/platform/projectCertificationInventoryEO/importData' }, dataSource: [], roleSwitchingCode: '', @@ -914,7 +914,7 @@ let query = { projectLibraryId: this.$route.query.id } - getAction('/project/projectCertificationInventoryEO/queryDutyPersonByProjectId', query).then((res) => { + getAction('/platform/projectCertificationInventoryEO/queryDutyPersonByProjectId', query).then((res) => { if (res.success) { let engineeringInterfacePerson = { value: 'sdt', @@ -967,7 +967,7 @@ }) }, getProcessStatus() { - getAction('/project/projectCertificationInventoryEO/getFlowStatusList', {}).then((res) => { + getAction('/platform/projectCertificationInventoryEO/getFlowStatusList', {}).then((res) => { if (res.success) { this.processStatusList = res.result || [] } else { @@ -1246,7 +1246,7 @@ // this.$confirm({ // content: _this.$t('confirmRelease'), // onOk() { - postAction('/project/projectCertificationInventoryEO/issue', { + postAction('/platform/projectCertificationInventoryEO/issue', { ids: ids.join(','), projectLibraryId: _this.$route.query.id, inventoryVerifyEndTime: formInline.inventoryVerifyEndTime @@ -1283,7 +1283,7 @@ taskConfirmEndTime: formInline.taskConfirmEndTime } - postAction('/project/projectCertificationInventoryEO/submitTask', query).then((res) => { + postAction('/platform/projectCertificationInventoryEO/submitTask', query).then((res) => { if (res.success) { _this.$message.success(_this.$t('OperationSuccessful')) _this.getList() @@ -1365,7 +1365,7 @@ this.$confirm({ content: _this.$t('confirmWithdrawal'), onOk() { - postAction('/project/projectCertificationInventoryEO/resetFlow', { + postAction('/platform/projectCertificationInventoryEO/resetFlow', { ids: ids.join(','), projectLibraryId: _this.$route.query.id, operatorType: 'certificationInventoryStudioWithdraw' @@ -1522,7 +1522,7 @@ this.$refs.modifyHistoryRef.getList(row.id) }, getRoleByUserId(callback) { - getAction('/project/projectCertificationInventoryEO/getRoleByUserId', { projectLibraryId: this.$route.query.id }).then((res) => { + getAction('/platform/projectCertificationInventoryEO/getRoleByUserId', { projectLibraryId: this.$route.query.id }).then((res) => { if (res.success) { this.roleSwitchingList = res.result || [] } else { @@ -1733,7 +1733,7 @@ 'projectLibraryId': this.$route.query.id, 'ids': this.toDoIds.join(',') } - postAction('/project/projectCertificationInventoryEO/transferTask', query).then((res) => { + postAction('/platform/projectCertificationInventoryEO/transferTask', query).then((res) => { if (res.success) { this.$message.success(this.$t('OperationSuccessful')) this.$refs.SelectedByRef.visible = false @@ -2039,7 +2039,7 @@ 'ids': ids.join(','), reasonForReturn: reasonForReturn } - postAction('/project/projectCertificationInventoryEO/submitTask', query).then((res) => { + postAction('/platform/projectCertificationInventoryEO/submitTask', query).then((res) => { if (res.success) { _this.$message.success(_this.$t('OperationSuccessful')) _this.getList() @@ -2089,7 +2089,7 @@ 'projectLibraryId': _this.$route.query.id, 'ids': ids.join(',') } - postAction('/project/projectCertificationInventoryEO/submitTask', query).then((res) => { + postAction('/platform/projectCertificationInventoryEO/submitTask', query).then((res) => { if (res.success) { _this.$message.success(_this.$t('OperationSuccessful')) _this.getList() @@ -2112,7 +2112,7 @@ 'flowStatus': 'NA', 'ids': NAId.join(',') } - postAction('/project/projectCertificationInventoryEO/updateStatusBatch', query).then((res) => { + postAction('/platform/projectCertificationInventoryEO/updateStatusBatch', query).then((res) => { if (res.success) { if (ids && ids.length > 0) { } else { @@ -2181,7 +2181,7 @@ ids: ids.join(','), 'flowStatus': 'Results to be submitted' } - postAction('/project/projectCertificationInventoryEO/updateStatusBatch', query).then((res) => { + postAction('/platform/projectCertificationInventoryEO/updateStatusBatch', query).then((res) => { if (res.success) { _this.$message.success(_this.$t('OperationSuccessful')) _this.getList() diff --git a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/detilModel.vue b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/detilModel.vue index 23e0d70f7..1fed49c1b 100644 --- a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/detilModel.vue +++ b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/detilModel.vue @@ -24,6 +24,7 @@ :disabled="disabled"/> + diff --git a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/listEditModel.vue b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/listEditModel.vue index f7581f1be..d9bc9908a 100644 --- a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/listEditModel.vue +++ b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/listEditModel.vue @@ -787,7 +787,7 @@ let query = { projectLawsInventoryId: id } - getAction('/project/projectLawsInventoryRejectCauseEO/list', query).then((res) => { + getAction('/platform/projectLawsInventoryRejectCauseEO/list', query).then((res) => { if (res.success) { this.rejectCauseList = [] this.rejectCauseListOne = [] diff --git a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/listOfRegulations.vue b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/listOfRegulations.vue index 0ea88a2d0..2b1f0cbb1 100644 --- a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/listOfRegulations.vue +++ b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/listOfRegulations.vue @@ -1261,25 +1261,25 @@ } ], url: { - addModelList: '/project/projectLawsInventoryEO/queryPageDummy', - queryConditionInventory: '/project/projectLawsInventoryEO/queryConditionInventory', - list: '/project/projectLawsInventoryEO/page', - addModel: 'project/projectLawsInventoryEO/add', - editModel: '/project/projectLawsInventoryEO/edit', - deleteBatch: '/project/projectLawsInventoryEO/deleteBatch', - deleteOne: '/project/projectLawsInventoryEO/delete', - updateStatusBatch: '/project/projectLawsInventoryEO/updateStatusBatch', - matchRelevantPeople: '/project/projectLawsInventoryEO/matchRelevantPeople', - queryPersonByProject: '/project/projectRelatedPersonnel/queryPersonByProjectId', - importZipUrl: '/project/projectLawsInventoryEO/importData', - exportTemplate: '/project/projectLawsInventoryEO/exportTemplate', - exportData: '/project/projectLawsInventoryEO/exportData', - setBatch: '/project/projectLawsInventoryEO/setBatch',//批量设置 - copyUrl: '/project/projectLawsInventoryEO/copyInfoByIds',//复制 - transferUrl: '/project/projectLawsInventoryEO/getPageInfoDummy',//调取 - ExportReportUrl: '/project/projectLawsInventoryEO/downloadDocxReport', - AndUserId: '/project/projectLibraryRoleRelEO/queryByProjectLibraryIdAndUserId', - AndUserIdEdit: '/project/projectLibraryRoleRelEO/edit' + addModelList: '/platform/projectLawsInventoryEO/queryPageDummy', + queryConditionInventory: '/platform/projectLawsInventoryEO/queryConditionInventory', + list: '/platform/projectLawsInventoryEO/page', + addModel: 'platform/projectLawsInventoryEO/add', + editModel: '/platform/projectLawsInventoryEO/edit', + deleteBatch: '/platform/projectLawsInventoryEO/deleteBatch', + deleteOne: '/platform/projectLawsInventoryEO/delete', + updateStatusBatch: '/platform/projectLawsInventoryEO/updateStatusBatch', + matchRelevantPeople: '/platform/projectLawsInventoryEO/matchRelevantPeople', + queryPersonByProject: '/platform/projectRelatedPersonnel/queryPersonByProjectId', + importZipUrl: '/platform/projectLawsInventoryEO/importData', + exportTemplate: '/platform/projectLawsInventoryEO/exportTemplate', + exportData: '/platform/projectLawsInventoryEO/exportData', + setBatch: '/platform/projectLawsInventoryEO/setBatch',//批量设置 + copyUrl: '/platform/projectLawsInventoryEO/copyInfoByIds',//复制 + transferUrl: '/platform/projectLawsInventoryEO/getPageInfoDummy',//调取 + ExportReportUrl: '/platform/projectLawsInventoryEO/downloadDocxReport', + AndUserId: '/platform/projectLibraryRoleRelEO/queryByProjectLibraryIdAndUserId', + AndUserIdEdit: '/platform/projectLibraryRoleRelEO/edit' }, downLoadFileUrl: window._CONFIG['domianPreviewURL'] + '/sys/common/download', downLoadImgUrl: window._CONFIG['domianWebImgURL'] + '/sys/common/download', @@ -1655,7 +1655,7 @@ let query = { projectLibraryId: this.$route.query.id } - getAction('/project/projectRelatedPersonnel/queryEngineeringInterfacePersonByProjectId', query).then((res) => { + getAction('/platform/projectRelatedPersonnel/queryEngineeringInterfacePersonByProjectId', query).then((res) => { if (res.success) { let engineeringInterfacePerson = { value: 'engineeringInterfacePerson', @@ -1681,7 +1681,7 @@ let query = { projectLibraryId: this.$route.query.id } - getAction('/project/projectLawsInventoryEO/queryDutyPersonByProjectId', query).then((res) => { + getAction('/platform/projectLawsInventoryEO/queryDutyPersonByProjectId', query).then((res) => { if (res.success) { let designDuty = { value: 'designDutyId', @@ -1708,7 +1708,7 @@ let query = { projectLibraryId: this.$route.query.id } - getAction('/project/projectLawsInventoryEO/queryDutyPersonByProjectId', query).then((res) => { + getAction('/platform/projectLawsInventoryEO/queryDutyPersonByProjectId', query).then((res) => { if (res.success) { let verifyDuty = { value: 'verifyDutyId', @@ -1812,7 +1812,7 @@ //获取切换角色的数据 getRoleByUserId(callback) { - getAction('/project/projectLawsInventoryEO/getRoleByUserId', { projectLibraryId: this.$route.query.id }).then((res) => { + getAction('/platform/projectLawsInventoryEO/getRoleByUserId', { projectLibraryId: this.$route.query.id }).then((res) => { if (res.success) { this.roleSwitchingList = res.result || [] } else { @@ -2083,7 +2083,7 @@ operateType: operateType } this.confirmLoadingQuestion = true - postAction('project/projectLawsInventoryEO/expediting', query).then((res) => { + postAction('platform/projectLawsInventoryEO/expediting', query).then((res) => { if (res.success) { this.$message.success(this.$t('OperationSuccessful')) this.selectedRowKeys = [] @@ -2248,7 +2248,7 @@ let _this = this _this.confirmLoadingReset = true let idList = JSON.parse(JSON.stringify(_this.selectedRowKeys)) - postAction('/project/projectLawsInventoryEO/change', { + postAction('/platform/projectLawsInventoryEO/change', { ids: idList.join(','), projectLibraryId: _this.$route.query.id, operateType: _this.formInlineReset.operateType @@ -2279,7 +2279,7 @@ content: _this.$t('NoteConfirmTheChange'), onOk() { let idList = JSON.parse(JSON.stringify(_this.selectedRowKeys)) - postAction('/project/projectLawsInventoryEO/change', { + postAction('/platform/projectLawsInventoryEO/change', { ids: idList.join(','), projectLibraryId: _this.$route.query.id }).then((res) => { @@ -2820,7 +2820,7 @@ ...this.formInline } this.confirmLoading = true - postAction('/project/projectLawsInventoryEO/studioPublish', query).then((res) => { + postAction('/platform/projectLawsInventoryEO/studioPublish', query).then((res) => { if (res.success) { this.$message.success(this.$t('OperationSuccessful')) this.visible = false @@ -3085,7 +3085,7 @@ flowStatus: 'NA', lawsInventoryArray: this.updateFlowStatusList } - postAction('/project/projectLawsInventoryEO/updateFlowStatusBatch', query).then((res) => { + postAction('/platform/projectLawsInventoryEO/updateFlowStatusBatch', query).then((res) => { if (res.success) { if (this.requestsNum == 0) { this.visible = false @@ -3124,7 +3124,7 @@ projectLibraryId: this.$route.query.id, ids: ids.join(',') } - postAction('/project/projectLawsInventoryEO/regulationOwnerReturned', query).then((res) => { + postAction('/platform/projectLawsInventoryEO/regulationOwnerReturned', query).then((res) => { if (res.success) { this.$message.success(this.$t('OperationSuccessful')) this.selectedRowKeys = [] @@ -3151,7 +3151,7 @@ commentContent: this.$t('For') + content.join(',') + this.$t('markedRejection') + ':' + commentContent, projectLibraryId: this.$route.query.id } - postAction('/project/projectCommentEO/add', query).then((res) => { + postAction('/platform/projectCommentEO/add', query).then((res) => { }) }, @@ -3164,7 +3164,7 @@ projectLawsInventoryId: ids.join(','), rejectType: '0' } - postAction('/project/projectLawsInventoryRejectCauseEO/add', query).then((res) => { + postAction('/platform/projectLawsInventoryRejectCauseEO/add', query).then((res) => { }) }, diff --git a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/listOfRegulationsView.vue b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/listOfRegulationsView.vue index 25a12d88f..f228cc974 100644 --- a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/listOfRegulationsView.vue +++ b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/listOfRegulationsView.vue @@ -525,7 +525,7 @@ let query = { projectLawsInventoryId: id } - getAction('/project/projectLawsInventoryRejectCauseEO/list', query).then((res) => { + getAction('/platform/projectLawsInventoryRejectCauseEO/list', query).then((res) => { if (res.success) { this.rejectCauseList = [] this.rejectCauseListOne = [] diff --git a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/modifyOperator.vue b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/modifyOperator.vue index b9cbbdbcd..59ebbb5b6 100644 --- a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/modifyOperator.vue +++ b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/modifyOperator.vue @@ -96,7 +96,7 @@ verifyTransferUserId: this.formInline.verifyTransferUserId } this.confirmLoading = true - postAction('/project/projectLawsInventoryEO/compulsoryTransfer', query).then((res) => { + postAction('/platform/projectLawsInventoryEO/compulsoryTransfer', query).then((res) => { if (res.success) { this.$message.success(this.$t('OperationSuccessful')) this.confirmLoading = false diff --git a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/nonConformance.vue b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/nonConformance.vue index 816b9ba99..73b821008 100644 --- a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/nonConformance.vue +++ b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/nonConformance.vue @@ -326,8 +326,8 @@ export default { long: '', isPersonnelSelection:true, url: { - page: '/project/projectLawsInventoryEO/queryNotComplianList', - exportData: '/project/projectLawsInventoryEO/exportNotComplianList' + page: '/platform/projectLawsInventoryEO/queryNotComplianList', + exportData: '/platform/projectLawsInventoryEO/exportNotComplianList' }, content: [] } @@ -366,7 +366,7 @@ export default { }) }, getNameList() { - getAction('/project/projectNameInfoEO/queryProjectNameList', {}).then((res) => { + getAction('/platform/projectNameInfoEO/queryProjectNameList', {}).then((res) => { if (res.success) { this.projectNameList = res.result || [] } else { @@ -475,7 +475,7 @@ export default { this.$confirm({ content: _this.$t('ConfirmDelete'), onOk() { - deleteAction('/project/problemManagementEO/deleteBatch', { ids: record.uuid }).then((res) => { + deleteAction('/platform/problemManagementEO/deleteBatch', { ids: record.uuid }).then((res) => { if (res.success) { _this.$message.success(_this.$t('OperationSuccessful')) _this.getList() diff --git a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/regulatoryCompliance.vue b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/regulatoryCompliance.vue index 9b9619dbe..6d1a894a1 100644 --- a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/regulatoryCompliance.vue +++ b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/regulatoryCompliance.vue @@ -45,7 +45,7 @@ return { loading: false, url: { - getProjectDetailsStatistics: '/project/projectLibraryBase/getProjectDetailsStatistics' + getProjectDetailsStatistics: '/platform/projectLibraryBase/getProjectDetailsStatistics' }, mainTopNum: 0, mainLeftNum: 0, diff --git a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/resultReportedUpload.vue b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/resultReportedUpload.vue index a45c9d3a3..6fdf1d4e0 100644 --- a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/resultReportedUpload.vue +++ b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/resultReportedUpload.vue @@ -57,7 +57,7 @@ confirmLoading: false, uploadQuery: {}, url: { - editModel: '/project/projectLawsInventoryEO/edit' + editModel: '/platform/projectLawsInventoryEO/edit' } } }, diff --git a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/transferListvirtal.vue b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/transferListvirtal.vue index e7bacbf3a..8e6275b32 100644 --- a/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/transferListvirtal.vue +++ b/jero-web/src/views/projectManagement/platformItemLibraryDetails/components/transferListvirtal.vue @@ -333,7 +333,7 @@ export default { if (this.selectedRowKeys && this.selectedRowKeys.length > 0) { this.confirmLoading = true let selectedRowKeys = JSON.parse(JSON.stringify(this.selectedRowKeys)) - postAction('project/projectLawsInventoryEO/add', { + postAction('platform/projectLawsInventoryEO/add', { dummyInventoryBaseId: this.dummyInventoryBaseId, projectLibraryId: this.$route.query.id, dummyids: selectedRowKeys.join(','),