|
|
@ -188,15 +188,15 @@ const butttondata = (row,$index) => { |
|
|
|
const buttonTableClick = async (val, row) => { |
|
|
|
if (val == 'mainJobExe') { // 执行 |
|
|
|
console.log('列表-操作按钮事件-执行') |
|
|
|
handleExecuteSpare(row.id) |
|
|
|
handleExecuteSpare(row.masterId) |
|
|
|
} else if (val == 'mainJobAba') { // 放弃 |
|
|
|
console.log('列表-操作按钮事件-放弃') |
|
|
|
handleAbandon(row.id) |
|
|
|
handleAbandon(row.masterId) |
|
|
|
} else if (val == 'mainJobClo') { // 关闭 |
|
|
|
handleClose(row.id) |
|
|
|
handleClose(row.masterId) |
|
|
|
} else if (val == 'mainJobAcc') { // 承接 |
|
|
|
console.log('列表-操作按钮事件-承接') |
|
|
|
handleAccept(row.id) |
|
|
|
handleAccept(row.masterId) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|