fix 81062
This commit is contained in:
+17
-10
@@ -261,24 +261,31 @@ export default {
|
|||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.baseInfoForm.initData(this.formInfo)
|
this.$refs.baseInfoForm.initData(this.formInfo)
|
||||||
})
|
})
|
||||||
|
} else {
|
||||||
|
// 非强制撤回调接口查数据
|
||||||
|
this.getFormInfo()
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// 非草稿调用接口拿数据回显
|
// 非草稿调用接口查数据
|
||||||
getInspectRectifyDataById({ projectId }).then(res => {
|
this.getFormInfo()
|
||||||
if (res.success) {
|
|
||||||
const data = res.result || {}
|
|
||||||
this.formInfo = data
|
|
||||||
this.$nextTick(() => {
|
|
||||||
this.$refs.baseInfoForm.initData(data)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}).finally(() => {
|
}).finally(() => {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
// 获取业务数据
|
||||||
|
getFormInfo () {
|
||||||
|
getInspectRectifyDataById({ projectId: this.projectId }).then(res => {
|
||||||
|
if (res.success) {
|
||||||
|
const data = res.result || {}
|
||||||
|
this.formInfo = data
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.baseInfoForm.initData(data)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
// 获取人员信息
|
// 获取人员信息
|
||||||
getPersonInfo (isValidate = true) {
|
getPersonInfo (isValidate = true) {
|
||||||
let personnelObj = {}
|
let personnelObj = {}
|
||||||
|
|||||||
+24
-19
@@ -357,33 +357,38 @@ export default {
|
|||||||
standardNumbers: data.standardNumbers,
|
standardNumbers: data.standardNumbers,
|
||||||
applyDetail: data.applyDetail
|
applyDetail: data.applyDetail
|
||||||
})
|
})
|
||||||
|
} else {
|
||||||
|
// 非强制撤回调接口查数据
|
||||||
|
this.getFormInfo()
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// 非草稿获取业务数据
|
// 非草稿调用接口查数据
|
||||||
getPermissionApplyDataById({ projectId: this.projectId }).then(res => {
|
this.getFormInfo()
|
||||||
if (res.success) {
|
|
||||||
const data = res.result || {}
|
|
||||||
const list = data.lawsEnterpriseStandardList || []
|
|
||||||
// 发起节点的表格和审批节点的表格,哪个存在回显哪个的数据
|
|
||||||
this.$refs.baseInfoTable && this.$refs.baseInfoTable.setData(list)
|
|
||||||
this.$refs.applyPermissionTable && this.$refs.applyPermissionTable.setData(list)
|
|
||||||
// 保存并回显表单信息
|
|
||||||
this.info = cloneDeep(data)
|
|
||||||
this.formInfo = data
|
|
||||||
this.baseInfoForm.setFieldsValue({
|
|
||||||
expirationDate: data.expirationDate,
|
|
||||||
userDictText: data.userDictText,
|
|
||||||
standardNumbers: data.standardNumbers,
|
|
||||||
applyDetail: data.applyDetail
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}).finally(() => {
|
}).finally(() => {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
// 获取业务表单信息
|
||||||
|
getFormInfo () {
|
||||||
|
getPermissionApplyDataById({ projectId: this.projectId }).then(res => {
|
||||||
|
if (res.success) {
|
||||||
|
const data = res.result || {}
|
||||||
|
const list = data.lawsEnterpriseStandardList || []
|
||||||
|
// 发起节点的表格和审批节点的表格,哪个存在回显哪个的数据
|
||||||
|
this.$refs.baseInfoTable && this.$refs.baseInfoTable.setData(list)
|
||||||
|
this.$refs.applyPermissionTable && this.$refs.applyPermissionTable.setData(list)
|
||||||
|
this.formInfo = data
|
||||||
|
this.baseInfoForm.setFieldsValue({
|
||||||
|
expirationDate: data.expirationDate,
|
||||||
|
userDictText: data.userDictText,
|
||||||
|
standardNumbers: data.standardNumbers,
|
||||||
|
applyDetail: data.applyDetail
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
// 获取人员信息
|
// 获取人员信息
|
||||||
getPersonInfo (isValidate = true) {
|
getPersonInfo (isValidate = true) {
|
||||||
let personnelObj = {}
|
let personnelObj = {}
|
||||||
|
|||||||
@@ -286,25 +286,32 @@ export default {
|
|||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.baseInfoForm.initData(this.formInfo)
|
this.$refs.baseInfoForm.initData(this.formInfo)
|
||||||
})
|
})
|
||||||
|
} else {
|
||||||
|
// 非强制撤回调接口查数据
|
||||||
|
this.getFormInfo()
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// 非草稿获取业务数据
|
// 非草稿调用接口查数据
|
||||||
getPostMeetingManageDataById({ projectId: this.projectId }).then(res => {
|
this.getFormInfo()
|
||||||
if (res.success) {
|
|
||||||
const data = res.result || {}
|
|
||||||
// 保存并回显表单信息
|
|
||||||
this.formInfo = data
|
|
||||||
this.$nextTick(() => {
|
|
||||||
this.$refs.baseInfoForm.initData(data)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}).finally(() => {
|
}).finally(() => {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
// 获取表单业务数据
|
||||||
|
getFormInfo () {
|
||||||
|
getPostMeetingManageDataById({ projectId: this.projectId }).then(res => {
|
||||||
|
if (res.success) {
|
||||||
|
const data = res.result || {}
|
||||||
|
// 保存并回显表单信息
|
||||||
|
this.formInfo = data
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.baseInfoForm.initData(data)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
// 获取人员信息
|
// 获取人员信息
|
||||||
getPersonInfo (isValidate = true) {
|
getPersonInfo (isValidate = true) {
|
||||||
let personnelObj = {}
|
let personnelObj = {}
|
||||||
|
|||||||
Reference in New Issue
Block a user