|
|
@ -128,17 +128,31 @@ const buttonBaseClick = (val, item) => { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
const isShowRevokeButton = (row,val) => { |
|
|
|
if (val.indexOf(row.revokeFlag) > -1) { |
|
|
|
return false |
|
|
|
} else { |
|
|
|
return true |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// 列表-操作按钮 |
|
|
|
const butttondata = (row,$index) => { |
|
|
|
const findIndex = row['masterId']?tableObject.tableList.findIndex(item=>item['masterId'] == row['masterId']):-1 |
|
|
|
if(findIndex>-1&&findIndex<$index){ |
|
|
|
return [] |
|
|
|
} |
|
|
|
return [] |
|
|
|
return [ |
|
|
|
defaultButtons.backoutBtn({hide:isShowRevokeButton(row,['FALSE'])}) // 撤销 |
|
|
|
] |
|
|
|
} |
|
|
|
|
|
|
|
// 列表-操作按钮事件 |
|
|
|
const buttonTableClick = async (val, row) => { |
|
|
|
if (val == 'backout') { // 撤销 |
|
|
|
await ScrapRecordMainApi.revoke(row.masterId) |
|
|
|
buttonBaseClick('refresh',null) |
|
|
|
} |
|
|
|
} |
|
|
|
// 获取部门 用于详情 部门回显 |
|
|
|
const { wsCache } = useCache() |
|
|
|