|
|
@ -134,7 +134,7 @@ const { tableObject, tableMethods } = useTable({ |
|
|
|
businessType.value = 'MoveContainerManage' |
|
|
|
importFileName.value = '器具转移申请' |
|
|
|
} else if ( routeName.value == 'deliverContainerMainRequest') { |
|
|
|
tableObject.params = {InitialContainerManage |
|
|
|
tableObject.params = { |
|
|
|
type: 'DELIVER', |
|
|
|
} |
|
|
|
// fromLocationCode.value = null |
|
|
@ -278,6 +278,15 @@ const buttonBaseClick = (val, item) => { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// 根据状态返回该按钮是否显示 |
|
|
|
const isShowMainButton = (row,val) => { |
|
|
|
if (val.indexOf(row.status) > -1) { |
|
|
|
return false |
|
|
|
} else { |
|
|
|
return true |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// 列表-操作按钮 |
|
|
|
const butttondata = (row,$index) => { |
|
|
|
const findIndex = row['masterId']?tableObject.tableList.findIndex(item=>item['masterId'] == row['masterId']):-1 |
|
|
|