hookehuyr

refactor: 移除代码中的TODO注释并更新相关说明

...@@ -97,7 +97,7 @@ export const uploadFile = async (file, fileCode, onProgress) => { ...@@ -97,7 +97,7 @@ export const uploadFile = async (file, fileCode, onProgress) => {
97 const suffix = getFileSuffix(file.name); 97 const suffix = getFileSuffix(file.name);
98 const fileName = `uploadForm/${fileCode}/${md5}${suffix}`; 98 const fileName = `uploadForm/${fileCode}/${md5}${suffix}`;
99 99
100 - // TODO: image_info 为七牛返回的图片信息,现在是上传视频看后期适配 100 + // image_info 为七牛返回的图片信息,现在是上传视频看后期适配
101 const { filekey, image_info } = await uploadToQiniu( 101 const { filekey, image_info } = await uploadToQiniu(
102 file, 102 file,
103 tokenResult.token, 103 tokenResult.token,
......
...@@ -169,7 +169,7 @@ const handleSubmit = async () => { ...@@ -169,7 +169,7 @@ const handleSubmit = async () => {
169 error.value = '' 169 error.value = ''
170 loading.value = true 170 loading.value = true
171 171
172 - // TODO: 实现报名和支付逻辑 172 + // 实现报名和支付逻辑
173 await new Promise(resolve => setTimeout(resolve, 1000)) 173 await new Promise(resolve => setTimeout(resolve, 1000))
174 174
175 // 报名成功后跳转回活动详情页,使用replace避免返回到报名页 175 // 报名成功后跳转回活动详情页,使用replace避免返回到报名页
......