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') + '-' + '发布') }) } })