(fileId)
| 175 | } |
| 176 | |
| 177 | function handleDeleteFile(fileId) { |
| 178 | Modal.confirm({ |
| 179 | title: '删除文件', |
| 180 | content: '确定要删除该文件吗?', |
| 181 | okText: '确认', |
| 182 | cancelText: '取消', |
| 183 | onOk: () => deleteFile(fileId) |
| 184 | }) |
| 185 | } |
| 186 | |
| 187 | function handleBatchDelete() { |
| 188 | const files = database.value.files || {} |
nothing calls this directly
no test coverage detected