This commit is contained in:
宋伟佳
2021-09-24 14:42:36 +08:00
parent 701ff4e07a
commit ced7e8f0e2
2 changed files with 7 additions and 4 deletions
@@ -779,6 +779,7 @@ export default {
* @description: 动态表单读取
*/
getFormFieldList (item) {
console.log(item.commentText);
this.$nextTick(() => {
this.listForm = JSON.parse(JSON.stringify(item))
if(item.form === undefined){
@@ -791,9 +792,11 @@ export default {
this.listForm.jlUserId = item.jlUserId
this.listForm.zrUserId = item.zrUserId
this.fileInfoList = item.fileName
this.commentText = item.commentText
} else {
this.listForm = item.form
this.dataList = item.form.dataList
this.commentText = item.commentText
this.listForm.dataList = item.form.dataList
this.fileInfoList = item.form.fileName
}