Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -216,6 +216,7 @@ const validUpload = () => { | ... | @@ -216,6 +216,7 @@ const validUpload = () => { |
| 216 | 216 | ||
| 217 | const show = ref(false); // 跳转等待提示 | 217 | const show = ref(false); // 跳转等待提示 |
| 218 | const uploadVideo = () => { | 218 | const uploadVideo = () => { |
| 219 | + show.value = true; | ||
| 219 | axios.get('/srv/?a=can_upload') | 220 | axios.get('/srv/?a=can_upload') |
| 220 | .then(res => { | 221 | .then(res => { |
| 221 | if (res.data.code === 1) { | 222 | if (res.data.code === 1) { |
| ... | @@ -225,7 +226,6 @@ const uploadVideo = () => { | ... | @@ -225,7 +226,6 @@ const uploadVideo = () => { |
| 225 | const str = `${donateItem.value.user_id}-${$route.query.id}-${donateItem.value.perf_id}`; | 226 | const str = `${donateItem.value.user_id}-${$route.query.id}-${donateItem.value.perf_id}`; |
| 226 | // 已读隐私条例,直接跳转上传页面 | 227 | // 已读隐私条例,直接跳转上传页面 |
| 227 | if (Cookies.get('privacy_notice')) { | 228 | if (Cookies.get('privacy_notice')) { |
| 228 | - show.value = true; | ||
| 229 | location.href = `${JSJ_FORM_C}?x_field_1=${str}`; | 229 | location.href = `${JSJ_FORM_C}?x_field_1=${str}`; |
| 230 | // BUG: 关闭loading临时处理 | 230 | // BUG: 关闭loading临时处理 |
| 231 | setTimeout(() => { | 231 | setTimeout(() => { | ... | ... |
-
Please register or login to post a comment