From e0bb8b2afeedb532ff26d81af5cff1731617fabe Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Fri, 6 Sep 2024 09:59:09 +0800 Subject: [PATCH 01/29] =?UTF-8?q?[update]=20=E9=AB=98=E7=BA=A7=E6=90=9C?= =?UTF-8?q?=E7=B4=A2=E6=9F=A5=E8=AF=A2=E7=BB=93=E6=9E=9C=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E8=AF=91=E6=96=87=E5=88=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/lang/dashboard/en.js | 1 + src/common/lang/dashboard/zh.js | 1 + src/views/dashboard/search/AdvancedSearch.vue | 14 ++++++++++++++ 3 files changed, 16 insertions(+) diff --git a/src/common/lang/dashboard/en.js b/src/common/lang/dashboard/en.js index 6487685..8b867fe 100644 --- a/src/common/lang/dashboard/en.js +++ b/src/common/lang/dashboard/en.js @@ -52,6 +52,7 @@ module.exports = { termNo: 'Article No.', termTitle: 'Article Title', termContent: 'Article Content', + translation: 'Translation', applicableComponents: 'Applicable Components', newProduceVehiclesImplementationDate: 'New Certified Vehicle Implementation Date', newAuthVehiclesImplementationDate: 'New Production Vehicle Implementation Date', diff --git a/src/common/lang/dashboard/zh.js b/src/common/lang/dashboard/zh.js index 7cec826..95e6743 100644 --- a/src/common/lang/dashboard/zh.js +++ b/src/common/lang/dashboard/zh.js @@ -52,6 +52,7 @@ module.exports = { termNo: '条款号', termTitle: '条款标题', termContent: '条款内容', + translation: '译文', applicableComponents: '适用零部件', newProduceVehiclesImplementationDate: '新生产车实施日期', newAuthVehiclesImplementationDate: '新认证车实施日期', diff --git a/src/views/dashboard/search/AdvancedSearch.vue b/src/views/dashboard/search/AdvancedSearch.vue index 30063c5..070c2ac 100644 --- a/src/views/dashboard/search/AdvancedSearch.vue +++ b/src/views/dashboard/search/AdvancedSearch.vue @@ -211,6 +211,13 @@
{{ global.emptyLine }}
+ + @@ -394,6 +401,13 @@ export default { dataIndex: 'item_content', scopedSlots: { customRender: 'item_content' } }, + { // 译文 + title: this.$t('dashboard.advancedSearch.translation'), + align: 'center', + width: 180, + dataIndex: 'translation', + scopedSlots: { customRender: 'translation' } + }, // { // 适用零部件 // title: this.$t('dashboard.advancedSearch.applicableComponents'), // align: 'center', From 5eda1d45872f3811fb7af9287e12d6714af976c8 Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Fri, 6 Sep 2024 11:37:56 +0800 Subject: [PATCH 02/29] =?UTF-8?q?[update]=20=E4=BF=AE=E6=94=B9UAT=E9=97=AE?= =?UTF-8?q?=E9=A2=98=EF=BC=9A=E6=B3=95=E8=A7=84=E7=AC=A6=E5=90=88=E6=80=A7?= =?UTF-8?q?=E6=8E=92=E6=9F=A5=E6=B5=81=E7=A8=8B=E4=B8=8D=E7=AC=A6=E5=90=88?= =?UTF-8?q?=E5=92=8C=E5=BE=85=E9=AA=8C=E8=AF=81=E7=9A=84=E6=89=A9=E5=B1=95?= =?UTF-8?q?=E8=A1=A8=E5=8D=95=E9=A1=BA=E5=BA=8F=E8=B0=83=E6=95=B4=EF=BC=8C?= =?UTF-8?q?=E4=B8=8D=E6=BB=A1=E8=B6=B3=E8=A6=81=E6=B1=82=E7=8E=B0=E7=8A=B6?= =?UTF-8?q?=E4=B8=8B=E9=9D=A2=E5=A2=9E=E5=8A=A0=E5=AD=97=E6=AE=B5=E8=BE=85?= =?UTF-8?q?=E5=8A=A9=E8=AF=B4=E6=98=8E=E6=9D=90=E6=96=99=EF=BC=8C=E8=AF=84?= =?UTF-8?q?=E4=BC=B0=E7=BB=93=E6=9E=9C=E9=80=89=E6=8B=A9=E4=B8=8D=E7=AC=A6?= =?UTF-8?q?=E5=90=88=E5=92=8C=E5=BE=85=E9=AA=8C=E8=AF=81=E7=9A=84=E6=97=B6?= =?UTF-8?q?=E5=80=99=E8=87=AA=E5=8A=A8=E5=B1=95=E5=BC=80=E6=89=A9=E5=B1=95?= =?UTF-8?q?=E5=8C=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../en.js | 2 + .../zh.js | 2 + src/common/lang/workCenter/en.js | 1 + src/common/lang/workCenter/zh.js | 1 + .../modules/NonmatchItemLookModal.vue | 7 +- .../modules/AssessmentLookModal.vue | 20 +++- .../modules/DesignEngineerEvaluation.vue | 97 ++++++++++++------- .../modules/FinishAuditBaseInfo.vue | 19 +++- .../modules/MainFinderCollectBaseInfo.vue | 19 +++- .../modules/MainFinderDistributesBaseInfo.vue | 97 ++++++++++++------- .../modules/MainFinderSingleAuditBaseInfo.vue | 19 +++- 11 files changed, 199 insertions(+), 85 deletions(-) diff --git a/src/common/lang/regulatoryComplianceAssessmentDatabase/en.js b/src/common/lang/regulatoryComplianceAssessmentDatabase/en.js index b1bf488..0d551a4 100644 --- a/src/common/lang/regulatoryComplianceAssessmentDatabase/en.js +++ b/src/common/lang/regulatoryComplianceAssessmentDatabase/en.js @@ -13,6 +13,7 @@ module.exports = { clauseContent: 'Article Content', modelStatus: 'Developing Status', theStatusNotMeetRequirements: 'Unsatisfied Description', + supplementaryExplanatoryMaterial: 'Supplementary explanatory material', rectificationPlan: 'Rectification Plan', rectificationCycle: 'Rectification Time', rectificationCost: 'Rectification Costs', @@ -32,6 +33,7 @@ module.exports = { problemType: 'Evaluation Results', rectificationCompletionDate: 'Completion Date of Rectification', theStatusNotMeetRequirements: 'Unsatisfied Description', + supplementaryExplanatoryMaterial: 'Supplementary explanatory material', rectificationPlan: 'Rectification Plan', rectificationCycle: 'Rectification Time', rectificationCost: 'Rectification Costs', diff --git a/src/common/lang/regulatoryComplianceAssessmentDatabase/zh.js b/src/common/lang/regulatoryComplianceAssessmentDatabase/zh.js index 7955537..297fa13 100644 --- a/src/common/lang/regulatoryComplianceAssessmentDatabase/zh.js +++ b/src/common/lang/regulatoryComplianceAssessmentDatabase/zh.js @@ -13,6 +13,7 @@ module.exports = { clauseContent: '条款内容', modelStatus: '车型状态', theStatusNotMeetRequirements: '不满足要求的现状', + supplementaryExplanatoryMaterial: '辅助说明材料', rectificationPlan: '整改方案', rectificationCycle: '整改周期', rectificationCost: '整改费用', @@ -32,6 +33,7 @@ module.exports = { problemType: '问题类型', rectificationCompletionDate: '整改完成日期', theStatusNotMeetRequirements: '不满足要求的现状', + supplementaryExplanatoryMaterial: '辅助说明材料', rectificationPlan: '整改方案', rectificationCycle: '整改周期', rectificationCost: '整改费用', diff --git a/src/common/lang/workCenter/en.js b/src/common/lang/workCenter/en.js index 174c155..ccb60ce 100644 --- a/src/common/lang/workCenter/en.js +++ b/src/common/lang/workCenter/en.js @@ -43,6 +43,7 @@ module.exports = { approvingOfficer: 'Approving officer', evaluationResult: 'Evaluation Result', theStatusNotMeetRequirements: 'Unsatisfied Description', + supplementaryExplanatoryMaterial: 'Supplementary explanatory material', rectificationPlan: 'Rectification Plan', rectificationCycle: 'Rectification Time', rectificationCost: 'Rectification Costs', diff --git a/src/common/lang/workCenter/zh.js b/src/common/lang/workCenter/zh.js index 8246be8..42d42f9 100644 --- a/src/common/lang/workCenter/zh.js +++ b/src/common/lang/workCenter/zh.js @@ -43,6 +43,7 @@ module.exports = { approvingOfficer: '批准人员', evaluationResult: '评估结果', theStatusNotMeetRequirements: '不满足要求的现状', + supplementaryExplanatoryMaterial: '辅助说明材料', rectificationPlan: '整改方案', rectificationCycle: '整改周期', rectificationCost: '整改费用', diff --git a/src/views/regulatoryComplianceAssessmentDatabase/nonmatchItem/modules/NonmatchItemLookModal.vue b/src/views/regulatoryComplianceAssessmentDatabase/nonmatchItem/modules/NonmatchItemLookModal.vue index 114d786..4bc9f5d 100644 --- a/src/views/regulatoryComplianceAssessmentDatabase/nonmatchItem/modules/NonmatchItemLookModal.vue +++ b/src/views/regulatoryComplianceAssessmentDatabase/nonmatchItem/modules/NonmatchItemLookModal.vue @@ -18,6 +18,11 @@ :placeholder="$t('pleaseEnter')+$t('regulatoryComplianceAssessmentDatabase.nonmatchItem.theStatusNotMeetRequirements')" v-decorator.trim="[ 'unsatisfiedRequire']"/> + + + + { - this.form.setFieldsValue(pick(this.model, 'unsatisfiedRequire', 'correctionSolution', 'correctionPeriod', + this.form.setFieldsValue(pick(this.model, 'unsatisfiedRequire', 'unsatisfiedRequireAttach', 'correctionSolution', 'correctionPeriod', 'correctionCost', 'commonality', 'commonalityCost')) }) }, diff --git a/src/views/regulatoryComplianceAssessmentDatabase/regulatoryComplianceAssessment/modules/AssessmentLookModal.vue b/src/views/regulatoryComplianceAssessmentDatabase/regulatoryComplianceAssessment/modules/AssessmentLookModal.vue index 9d3aaa4..43c4b02 100644 --- a/src/views/regulatoryComplianceAssessmentDatabase/regulatoryComplianceAssessment/modules/AssessmentLookModal.vue +++ b/src/views/regulatoryComplianceAssessmentDatabase/regulatoryComplianceAssessment/modules/AssessmentLookModal.vue @@ -111,9 +111,15 @@ + + + @@ -208,6 +214,13 @@ export default { dataIndex: 'unsatisfiedRequire', scopedSlots: { customRender: 'text' } }, + { // 辅助说明材料 + title: this.$t('regulatoryComplianceAssessmentDatabase.assessmentLibrary.supplementaryExplanatoryMaterial'), + align: 'center', + width: 180, + dataIndex: 'unsatisfiedRequireAttach', + scopedSlots: { customRender: 'unsatisfiedRequireAttach' } + }, { // 整改方案 title: this.$t('regulatoryComplianceAssessmentDatabase.assessmentLibrary.rectificationPlan'), align: 'center', @@ -298,8 +311,9 @@ export default { const text = option.componentOptions.propsData.title || option.componentOptions.propsData.label return text.toLowerCase().indexOf(input.toLowerCase()) >= 0 }, - handleMaterialClick (record) { - this.$refs.uploadFile.open(record.material) + // 列表中的附件查看 + handleFileClick (record, fieldName) { + this.$refs.uploadFile.open(record[fieldName]) }, handleCancel () { this.close() diff --git a/src/views/workCenter/regulatoryComplianceCheckProcess/modules/DesignEngineerEvaluation.vue b/src/views/workCenter/regulatoryComplianceCheckProcess/modules/DesignEngineerEvaluation.vue index 172e021..eaf57a9 100644 --- a/src/views/workCenter/regulatoryComplianceCheckProcess/modules/DesignEngineerEvaluation.vue +++ b/src/views/workCenter/regulatoryComplianceCheckProcess/modules/DesignEngineerEvaluation.vue @@ -50,6 +50,7 @@ @@ -502,4 +545,11 @@ export default { .title-red-span { color: #D52C26; } + +//.icon-star1 { +// color: rgba(243, 129, 65); +//} +//.icon-star { +// color: rgba(243, 129, 65, 0.50); +//} From 98675ac1c3bba87249a6426268f02c8c27e64afa Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Fri, 13 Sep 2024 17:13:57 +0800 Subject: [PATCH 21/29] =?UTF-8?q?[update]=20=E4=BF=AE=E6=94=B9UAT=E9=97=AE?= =?UTF-8?q?=E9=A2=98=EF=BC=9A=E7=94=A8=E6=88=B7=E7=AE=A1=E7=90=86=E6=93=8D?= =?UTF-8?q?=E4=BD=9C=E5=88=97=E6=8C=89=E9=92=AE=E7=9A=84=E5=88=A4=E6=96=AD?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=BAsource=E5=8F=AA=E6=9C=89=E7=B3=BB?= =?UTF-8?q?=E7=BB=9F=E6=96=B0=E5=A2=9E=E6=89=8D=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/UserList.vue | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/views/system/UserList.vue b/src/views/system/UserList.vue index 509d551..326c28e 100644 --- a/src/views/system/UserList.vue +++ b/src/views/system/UserList.vue @@ -313,8 +313,8 @@ export default { clickEvent: 'handleEdit', has: 'user:edit', show: (record) => { - // IAM同步过来的不能编辑 - return record.source !== UserSource.IAM.value + // 只有系统新增的可以编辑 + return record.source === UserSource.SYSTEMADD.value } }, // 详情 @@ -329,8 +329,8 @@ export default { clickEvent: 'handleChangePassword', has: 'user:password', show: (record) => { - // IAM同步过来的不能编辑 - return record.source !== UserSource.IAM.value + // 只有系统新增的可以编辑 + return record.source === UserSource.SYSTEMADD.value } }, // 删除 @@ -339,8 +339,8 @@ export default { clickEvent: 'handleDelete', has: 'sys:user:sel', show: (record) => { - // IAM同步过来的不能删除 - return record.source !== UserSource.IAM.value + // 只有系统新增的可以编辑 + return record.source === UserSource.SYSTEMADD.value } }, // 冻结 @@ -349,8 +349,8 @@ export default { clickEvent: 'handleFrozen', has: 'user:edit', show: (record) => { - // IAM同步过来的不能编辑 - return (record.status + '') === '1' && record.source !== UserSource.IAM.value + // 只有系统新增的可以编辑 + return (record.status + '') === '1' && record.source === UserSource.SYSTEMADD.value } }, // 解冻 @@ -359,8 +359,8 @@ export default { clickEvent: 'handleFrozen', has: 'user:edit', show: (record) => { - // IAM同步过来的不能编辑 - return (record.status + '') === '2' && record.source !== UserSource.IAM.value + // 只有系统新增的可以编辑 + return (record.status + '') === '2' && record.source === UserSource.SYSTEMADD.value } } // 上传手写章 From 5fd2e48327396b93425ae62e1c3c25242f392d3c Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Fri, 13 Sep 2024 17:26:53 +0800 Subject: [PATCH 22/29] =?UTF-8?q?Revert=20"[update]=20=E4=BF=AE=E6=94=B9UA?= =?UTF-8?q?T=E9=97=AE=E9=A2=98=EF=BC=9A=E7=94=A8=E6=88=B7=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E6=93=8D=E4=BD=9C=E5=88=97=E6=8C=89=E9=92=AE=E7=9A=84?= =?UTF-8?q?=E5=88=A4=E6=96=AD=E4=BF=AE=E6=94=B9=E4=B8=BAsource=E5=8F=AA?= =?UTF-8?q?=E6=9C=89=E7=B3=BB=E7=BB=9F=E6=96=B0=E5=A2=9E=E6=89=8D=E6=98=BE?= =?UTF-8?q?=E7=A4=BA"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 98675ac1 --- src/views/system/UserList.vue | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/views/system/UserList.vue b/src/views/system/UserList.vue index 326c28e..509d551 100644 --- a/src/views/system/UserList.vue +++ b/src/views/system/UserList.vue @@ -313,8 +313,8 @@ export default { clickEvent: 'handleEdit', has: 'user:edit', show: (record) => { - // 只有系统新增的可以编辑 - return record.source === UserSource.SYSTEMADD.value + // IAM同步过来的不能编辑 + return record.source !== UserSource.IAM.value } }, // 详情 @@ -329,8 +329,8 @@ export default { clickEvent: 'handleChangePassword', has: 'user:password', show: (record) => { - // 只有系统新增的可以编辑 - return record.source === UserSource.SYSTEMADD.value + // IAM同步过来的不能编辑 + return record.source !== UserSource.IAM.value } }, // 删除 @@ -339,8 +339,8 @@ export default { clickEvent: 'handleDelete', has: 'sys:user:sel', show: (record) => { - // 只有系统新增的可以编辑 - return record.source === UserSource.SYSTEMADD.value + // IAM同步过来的不能删除 + return record.source !== UserSource.IAM.value } }, // 冻结 @@ -349,8 +349,8 @@ export default { clickEvent: 'handleFrozen', has: 'user:edit', show: (record) => { - // 只有系统新增的可以编辑 - return (record.status + '') === '1' && record.source === UserSource.SYSTEMADD.value + // IAM同步过来的不能编辑 + return (record.status + '') === '1' && record.source !== UserSource.IAM.value } }, // 解冻 @@ -359,8 +359,8 @@ export default { clickEvent: 'handleFrozen', has: 'user:edit', show: (record) => { - // 只有系统新增的可以编辑 - return (record.status + '') === '2' && record.source === UserSource.SYSTEMADD.value + // IAM同步过来的不能编辑 + return (record.status + '') === '2' && record.source !== UserSource.IAM.value } } // 上传手写章 From 6ffb824d060e2043a6ac556187c4cf1ca161d389 Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Fri, 13 Sep 2024 17:31:11 +0800 Subject: [PATCH 23/29] =?UTF-8?q?[update]=20=E4=BF=AE=E6=94=B9UAT=E9=97=AE?= =?UTF-8?q?=E9=A2=98=EF=BC=9A=E4=B8=8D=E7=AC=A6=E5=90=88=E9=A1=B9=E5=BA=93?= =?UTF-8?q?=E5=85=B3=E9=97=AD=E4=BA=BA=EF=BC=8C=E5=85=B3=E9=97=AD=E6=97=B6?= =?UTF-8?q?=E9=97=B4=E5=88=97=E6=8D=A2=E4=BD=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../nonmatchItem/NonmatchItemList.vue | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/views/regulatoryComplianceAssessmentDatabase/nonmatchItem/NonmatchItemList.vue b/src/views/regulatoryComplianceAssessmentDatabase/nonmatchItem/NonmatchItemList.vue index 2e1636f..b2e616e 100644 --- a/src/views/regulatoryComplianceAssessmentDatabase/nonmatchItem/NonmatchItemList.vue +++ b/src/views/regulatoryComplianceAssessmentDatabase/nonmatchItem/NonmatchItemList.vue @@ -238,6 +238,20 @@ export default { dataIndex: 'rectifyStatus_dictText', scopedSlots: { customRender: 'dictText' } }, + { // 关闭人 + title: this.$t('regulatoryComplianceAssessmentDatabase.nonmatchItem.shutter'), + align: 'center', + width: 180, + dataIndex: 'closeUser_dictText', + scopedSlots: { customRender: 'text' } + }, + { // 关闭时间 + title: this.$t('regulatoryComplianceAssessmentDatabase.nonmatchItem.closingTime'), + align: 'center', + width: 180, + dataIndex: 'closeTime', + scopedSlots: { customRender: 'text' } + }, { // PCR编号 title: this.$t('regulatoryComplianceAssessmentDatabase.nonmatchItem.pcrNumber'), align: 'center', @@ -259,20 +273,6 @@ export default { dataIndex: 'file', scopedSlots: { customRender: 'file' } }, - { // 关闭人 - title: this.$t('regulatoryComplianceAssessmentDatabase.nonmatchItem.shutter'), - align: 'center', - width: 180, - dataIndex: 'closeUser_dictText', - scopedSlots: { customRender: 'text' } - }, - { // 关闭时间 - title: this.$t('regulatoryComplianceAssessmentDatabase.nonmatchItem.closingTime'), - align: 'center', - width: 180, - dataIndex: 'closeTime', - scopedSlots: { customRender: 'text' } - }, { title: this.$t('operation'), scopedSlots: { customRender: 'action' }, From b91e7767ed98a38db3fb022db09d7566d97a7e17 Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Fri, 13 Sep 2024 18:03:29 +0800 Subject: [PATCH 24/29] =?UTF-8?q?[update]=20=E4=BF=AE=E6=94=B9UAT=E9=97=AE?= =?UTF-8?q?=E9=A2=98=EF=BC=9A=E5=A4=96=E6=9D=A5=E6=A0=87=E5=87=86=E5=92=8C?= =?UTF-8?q?=E4=BC=81=E4=B8=9A=E6=A0=87=E5=87=86=E7=BC=96=E8=BE=91=E4=B8=8D?= =?UTF-8?q?=E4=BC=A0=E6=94=B6=E8=97=8F=E6=A0=87=E8=AF=86=EF=BC=8C=E4=BC=9A?= =?UTF-8?q?=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../standard/modules/EnterpriseStandardModal.vue | 1 + .../foreignStandard/modules/ForeignStandardModal.vue | 1 + 2 files changed, 2 insertions(+) diff --git a/src/views/enterpriseStandardLibrary/standard/modules/EnterpriseStandardModal.vue b/src/views/enterpriseStandardLibrary/standard/modules/EnterpriseStandardModal.vue index dcd0755..b5079d2 100644 --- a/src/views/enterpriseStandardLibrary/standard/modules/EnterpriseStandardModal.vue +++ b/src/views/enterpriseStandardLibrary/standard/modules/EnterpriseStandardModal.vue @@ -212,6 +212,7 @@ export default { } const param = Object.assign({}, formInline) param.checkList = this.dataSource + param.collectionFlag = undefined postAction(url, param).then((res) => { if (res.success) { this.$message.success(this.$t('operationSuccessful')) diff --git a/src/views/standardRegulationLibrary/foreignStandard/modules/ForeignStandardModal.vue b/src/views/standardRegulationLibrary/foreignStandard/modules/ForeignStandardModal.vue index 3f4c664..621e995 100644 --- a/src/views/standardRegulationLibrary/foreignStandard/modules/ForeignStandardModal.vue +++ b/src/views/standardRegulationLibrary/foreignStandard/modules/ForeignStandardModal.vue @@ -117,6 +117,7 @@ export default { } else { submitFunc = addForeignStandard } + formInline.collectionFlag = undefined submitFunc(formInline).then((res) => { if (res.success) { this.$message.success(this.$t('operationSuccessful')) From 32e4419bc42971253e4857e81a87be698ee2192a Mon Sep 17 00:00:00 2001 From: danshihao Date: Fri, 13 Sep 2024 18:12:51 +0800 Subject: [PATCH 25/29] =?UTF-8?q?[update=20=E6=8B=86=E5=88=86-=E6=A0=91?= =?UTF-8?q?=E6=8E=92=E5=BA=8F=E5=BC=B9=E6=A1=86]=20=E8=8A=82=E7=82=B9?= =?UTF-8?q?=E5=AE=BD=E5=BA=A6=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../documentSplit/modules/SplitTreeOrderModal.vue | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/views/documentTool/documentSplit/modules/SplitTreeOrderModal.vue b/src/views/documentTool/documentSplit/modules/SplitTreeOrderModal.vue index 00fbbde..fe4fc5b 100644 --- a/src/views/documentTool/documentSplit/modules/SplitTreeOrderModal.vue +++ b/src/views/documentTool/documentSplit/modules/SplitTreeOrderModal.vue @@ -7,12 +7,14 @@ :maskClosable="false" :footer="null" :confirmLoading="confirmLoading" + :fullscreen.sync="fullscreen" @ok="handleOk" @cancel="handleCancel"> From 5fddaa7e0c967135ec825bfa6f26e1ca5eda2381 Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Fri, 13 Sep 2024 19:00:24 +0800 Subject: [PATCH 26/29] =?UTF-8?q?[update]=20=E4=BF=AE=E6=94=B9UAT=E9=97=AE?= =?UTF-8?q?=E9=A2=98=EF=BC=9A=E6=B3=95=E8=A7=84=E7=AC=A6=E5=90=88=E6=80=A7?= =?UTF-8?q?=E6=8E=92=E6=9F=A5=E6=B5=81=E7=A8=8B-=E4=B8=BB=E6=8E=92?= =?UTF-8?q?=E6=9F=A5=E4=BA=BA=E6=B1=87=E6=80=BB=E8=8A=82=E7=82=B9=E7=BC=96?= =?UTF-8?q?=E8=BE=91=E5=A2=9E=E5=8A=A0=E8=BE=85=E5=8A=A9=E8=AF=B4=E6=98=8E?= =?UTF-8?q?=E6=9D=90=E6=96=99=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/MainFinderCollectEditModal.vue | 52 +++++++++++-------- 1 file changed, 31 insertions(+), 21 deletions(-) diff --git a/src/views/workCenter/regulatoryComplianceCheckProcess/modules/MainFinderCollectEditModal.vue b/src/views/workCenter/regulatoryComplianceCheckProcess/modules/MainFinderCollectEditModal.vue index a08e0d4..77d861d 100644 --- a/src/views/workCenter/regulatoryComplianceCheckProcess/modules/MainFinderCollectEditModal.vue +++ b/src/views/workCenter/regulatoryComplianceCheckProcess/modules/MainFinderCollectEditModal.vue @@ -30,6 +30,28 @@