fix 79903
This commit is contained in:
@@ -115,6 +115,7 @@
|
|||||||
<span class="required" v-if="item.fieldMustInput === '1'">*</span>
|
<span class="required" v-if="item.fieldMustInput === '1'">*</span>
|
||||||
<span class="title-text-text" :title="item.dbFieldTxt">{{ item.dbFieldTxt }}</span>
|
<span class="title-text-text" :title="item.dbFieldTxt">{{ item.dbFieldTxt }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
<!--标准号特殊处理-->
|
||||||
<a-form-model-item class="item-model"
|
<a-form-model-item class="item-model"
|
||||||
:prop="item.dbFieldName"
|
:prop="item.dbFieldName"
|
||||||
v-if="item.dbFieldName === 'standard_number_temp'">
|
v-if="item.dbFieldName === 'standard_number_temp'">
|
||||||
@@ -564,10 +565,6 @@ export default {
|
|||||||
const formList = Object.values(this.formList).reduce((acc, cur) => acc.concat(cur), [])
|
const formList = Object.values(this.formList).reduce((acc, cur) => acc.concat(cur), [])
|
||||||
this.formInline = Object.assign({ ...this.formInline }, { ...businessData })
|
this.formInline = Object.assign({ ...this.formInline }, { ...businessData })
|
||||||
const nodeId = this.$route.query.nodeId
|
const nodeId = this.$route.query.nodeId
|
||||||
// 如果是审批节点或者是入库流程的变更节点,处理回显的标准号
|
|
||||||
if (nodeId === FGEntryChangeProcessNode.approve.value || (nodeId === FGEntryChangeProcessNode.initiate.value && this.formInline.operateType === OperationType.CHANGE.value)) {
|
|
||||||
this.formInline.standard_number_temp = this.formInline.standard_number
|
|
||||||
}
|
|
||||||
const treeMultipleField = formList.filter(tt => tt.fieldShowType === FieldType.TREE.value)
|
const treeMultipleField = formList.filter(tt => tt.fieldShowType === FieldType.TREE.value)
|
||||||
treeMultipleField.forEach(field => {
|
treeMultipleField.forEach(field => {
|
||||||
const valueArr = []
|
const valueArr = []
|
||||||
|
|||||||
Reference in New Issue
Block a user