()
| 213 | } |
| 214 | |
| 215 | async function nextDataCollection() { |
| 216 | try { |
| 217 | // 保存当前数据 |
| 218 | await saveCurrentData(); |
| 219 | |
| 220 | // 显示应用信息输入弹窗,为下一条数据输入新的应用信息和任务描述 |
| 221 | showTaskDescriptionModal(true); |
| 222 | |
| 223 | } catch (error) { |
| 224 | updateStatus(`切换到下一条数据失败: ${error.message}`, 'error'); |
| 225 | } |
| 226 | } |
| 227 | |
| 228 | async function deleteDataCollection() { |
| 229 | try { |
nothing calls this directly
no test coverage detected