Source/UBCS-WEB/src/views/docking/info.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
Source/UBCS-WEB/src/views/docking/infoForm.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
Source/UBCS-WEB/src/views/docking/info.vue
@@ -324,6 +324,7 @@ this.editAttribute = row; this.editAttribute.sysIntParamVOs = row.sysIntParamVOs || []; this.editAttribute.sysIntHeaderVOs = row.sysIntHeaderVOs || []; this.editAttribute.type = 'edit'; this.$refs.infoForm.formData = this.editAttribute; this.$refs.infoForm.showSubmitDialog = true; console.log('row',row.dataFlowTypeText) Source/UBCS-WEB/src/views/docking/infoForm.vue
@@ -490,6 +490,7 @@ } }, submitAttribute() { console.log() const that = this; let pass=true if(this.formData.dataFlowType=='push' && (validatenull(this.formData.classifyName)||validatenull(this.formData.targetSystemName))){ @@ -522,8 +523,11 @@ ordernNo:item.$index } }) add(that.formData).then(res => { that.$message.success("保存成功"); const apiCall = that.formData.type == 'edit' ? edit : add; const Message = that.formData.type == 'edit' ? "修改成功" : "保存成功"; console.log( that.formData) apiCall(that.formData).then(res => { that.$message.success(Message); that.showSubmitDialog = false; this.$refs.form.resetFields(); this.formData = { @@ -531,6 +535,7 @@ sysIntHeaderVOs: [] }; that.$emit('refreshTable'); that.formData.type=null; }); } })