From ad444cc28d73c4a135c204eca6a9b9e5bc4103f6 Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Mon, 22 Jul 2024 18:01:10 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E5=B8=82=E5=9C=BA=E6=B8=85=E5=8D=95?= =?UTF-8?q?=E5=8F=91=E5=B8=83=E6=B5=81=E7=A8=8B=E9=87=8C=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E5=90=8D=E7=A7=B0=E9=87=8C=E7=9A=84=E7=89=88=E6=9C=AC=E5=8F=B7?= =?UTF-8?q?=E5=89=8D=E7=AB=AF=E4=B8=8D=E9=9C=80=E8=A6=81=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/BaseInfoForm.vue | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/src/views/workCenter/marketListReleaseProcess/modules/BaseInfoForm.vue b/src/views/workCenter/marketListReleaseProcess/modules/BaseInfoForm.vue index 26d4b8c..3f92013 100644 --- a/src/views/workCenter/marketListReleaseProcess/modules/BaseInfoForm.vue +++ b/src/views/workCenter/marketListReleaseProcess/modules/BaseInfoForm.vue @@ -345,12 +345,7 @@ export default { } }).finally(() => { this.loading = false - let manifestVersion = '' - if (this.formInline.manifestVersion) { - manifestVersion = this.getStringBetween(this.formInline.manifestVersion, 'V', '.') - manifestVersion = 'V' + (Number(manifestVersion) + 1) + '.0' - } - this.$emit('processNameChange', (this.formInline.manifestName || '') + '-' + (manifestVersion || 'V1.0') + '-' + '发布') + this.$emit('processNameChange', (this.formInline.manifestName || '') + '-' + (this.formInline.manifestVersion || 'V1.0') + '-' + '发布') }) } }) @@ -457,12 +452,7 @@ export default { }).finally(() => { this.loading = false this.isGetDataAfter = true - let manifestVersion = '' - if (this.formInline.manifestVersion) { - manifestVersion = this.getStringBetween(this.formInline.manifestVersion, 'V', '.') - manifestVersion = 'V' + (Number(manifestVersion) + 1) + '.0' - } - this.$emit('processNameChange', (this.formInline.manifestName || '') + '-' + (manifestVersion || 'V1.0') + '-' + '发布') + this.$emit('processNameChange', (this.formInline.manifestName || '') + '-' + (this.formInline.manifestVersion || 'V1.0') + '-' + '发布') }) } })