Showing
2 changed files
with
2 additions
and
3 deletions
| ... | ... | @@ -244,7 +244,6 @@ |
| 244 | 244 | // selectedTotal.value = unref(selectedRowKeys).length; |
| 245 | 245 | pendingTotal.value = unref(pendingTotal) - currentPageSelectRows.length; |
| 246 | 246 | selectedTotal.value = unref(selectedTotal) + currentPageSelectRows.length; |
| 247 | - console.log(unref(pendingTotal)); | |
| 248 | 247 | |
| 249 | 248 | clearPendingSelectedRowKeys(); |
| 250 | 249 | handleTriggerEmit(unref(selectedRowKeys), unref(selectedRows)); | ... | ... |
| ... | ... | @@ -70,8 +70,8 @@ const handleGroupDevice = (options: DeviceRecord[]) => { |
| 70 | 70 | } |
| 71 | 71 | }); |
| 72 | 72 | const value = Array.from(map.entries()).map(([product, devices]) => ({ product, devices })); |
| 73 | - console.log(value); | |
| 74 | - return Array.from(map.entries()).map(([product, devices]) => ({ product, devices })); | |
| 73 | + | |
| 74 | + return value; | |
| 75 | 75 | }; |
| 76 | 76 | |
| 77 | 77 | const deviceTableFormSchema: FormSchema[] = [ | ... | ... |