This commit is contained in:
parent
9b601f96b0
commit
d62a17b0ac
|
|
@ -579,7 +579,7 @@ export default {
|
|||
this.sendTemp = []
|
||||
this.ids = selection.map(item => item.id)
|
||||
selection.forEach(item => {
|
||||
this.sendTemp.push({ id: item.id, taskId: item.taskId })
|
||||
this.sendTemp.push({ id: item.id, taskId: item.taskId,code: item.code })
|
||||
})
|
||||
this.single = selection.length != 1
|
||||
this.multiple = !selection.length
|
||||
|
|
@ -1185,7 +1185,7 @@ export default {
|
|||
|
||||
//发布按钮
|
||||
handleSend(row) {
|
||||
const param = { id: row.id, taskId: row.taskId }
|
||||
const param = { id: row.id, taskId: row.taskId,code:row.code }
|
||||
this.$modal
|
||||
.confirm('是否确认发布所选择的数据项?')
|
||||
.then(async () => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue