对接设计符合性确认

This commit is contained in:
qq787203167
2022-05-09 10:54:02 +08:00
parent 4d3e82d83f
commit f071c1fe2a
2 changed files with 16 additions and 3 deletions
@@ -209,7 +209,7 @@
})
let query = {
ids: ids.join(','),
...this.formInline
...formInline
}
this.confirmLoading = true
postAction(this.url.setBatch, query).then((res) => {
@@ -316,10 +316,20 @@
width: 200,
scopedSlots: { customRender: 'operation' }
}
]
],
url: {
list: '/project/projectTaskInventoryFeedbackEO/list',
add: '/project/projectTaskInventoryFeedbackEO/add',
edit: '/project/projectTaskInventoryFeedbackEO/edit',
deleted: '/project/projectTaskInventoryFeedbackEO/delete',
DetailEOAdd: '/project/projectTaskInventoryDetailEO/add',
queryByActiProcInstId: '/project/projectTaskInventoryDetailEO/queryByActiProcInstId',
remindDispose: '/project/projectTaskInventoryEO/remindDispose'
}
}
},
mounted() {
this.getList()
},
methods: {
handleOk() {
@@ -389,7 +399,10 @@
/** 赋值给当前对应的表单文件 */
this.formInline[this.uploadName] = attIdList.join(',')
this.formInline = { ...this.formInline }
}
},
getList(){
},
}
}
</script>