chore: 移除调试日志
- 移除下载功能中的 console.log 调试代码 - 改为 TODO 注释标记待实现 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
0bfedb95c8
commit
b83d7e068c
@ -158,8 +158,7 @@ function ScriptTaskCard({ task }: { task: ScriptTask }) {
|
|||||||
|
|
||||||
const handleDownload = (e: React.MouseEvent) => {
|
const handleDownload = (e: React.MouseEvent) => {
|
||||||
e.stopPropagation()
|
e.stopPropagation()
|
||||||
// 模拟下载
|
// TODO: 实现实际下载逻辑
|
||||||
console.log('下载脚本:', task.fileName)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@ -227,8 +226,7 @@ function VideoTaskCard({ task }: { task: VideoTask }) {
|
|||||||
|
|
||||||
const handleDownload = (e: React.MouseEvent) => {
|
const handleDownload = (e: React.MouseEvent) => {
|
||||||
e.stopPropagation()
|
e.stopPropagation()
|
||||||
// 模拟下载
|
// TODO: 实现实际下载逻辑
|
||||||
console.log('下载视频:', task.fileName)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user