| | |
| | | { |
| | | label: '删除', |
| | | fn: async (c: CurrentType) => { |
| | | const names = selection.value.map((item: { name: string }) => item.name) |
| | | const names = selection.value.map((item: { id: string }) => item.id) |
| | | ConfirmBox( |
| | | `是否删除${names.length ? names.join(',') : c.row.name}` |
| | | `是否删除${names.length ? names.join(',') : c.row.id}` |
| | | ).then(async () => { |
| | | const ids = selection.value.map((item: { id: string }) => item.id) |
| | | await wmsInOutStockRecord.deleteWmsInOutStockRecords(ids.length ? ids : [c.row.id]) |
| | |
| | | */ |
| | | const onExport = (data={}) => { |
| | | //const params = tableRef.value?.getParams() |
| | | exportFile('/api/v1/hIAWms/wmsInOutStockRecord/export', data, 'hIAWms') |
| | | exportFile('/api/v1/HIAWms/wmsInOutStockRecord/export', data, 'wmsInOutStockRecord') |
| | | } |
| | | |
| | | /** |