fix 80068
This commit is contained in:
@@ -77,7 +77,6 @@
|
||||
<a-form-item :label="$t('standardName')">
|
||||
<a-input :placeholder="$t('pleaseEnter') + $t('standardName')"
|
||||
@change="event => event.target.value = event.target.value.trim()"
|
||||
:maxLength="50"
|
||||
disabled
|
||||
v-decorator="['standardName', validatorRules.standardName]" />
|
||||
</a-form-item>
|
||||
@@ -900,6 +899,12 @@ export default {
|
||||
delete this.basicServiceInfo.standardTextFileName
|
||||
delete this.basicServiceInfo.standardText
|
||||
delete this.basicServiceInfo.standardTextFileId
|
||||
// 标准编号、标准名称都有的情况下生成流程名称
|
||||
if (standard.standardNumber && standard.standardName) {
|
||||
this.processInfoForm.setFieldsValue({ processName: `${standard.standardNumber}-${standard.standardName}-征求意见` })
|
||||
} else {
|
||||
this.processInfoForm.setFieldsValue({ processName: null })
|
||||
}
|
||||
},
|
||||
/**
|
||||
* 选择标准文本
|
||||
|
||||
Reference in New Issue
Block a user