Showing
1 changed file
with
6 additions
and
5 deletions
| ... | @@ -208,16 +208,17 @@ const noticeHtml = ref('') | ... | @@ -208,16 +208,17 @@ const noticeHtml = ref('') |
| 208 | const show = ref(false); // 跳转等待提示 | 208 | const show = ref(false); // 跳转等待提示 |
| 209 | const uploadVideo = () => { | 209 | const uploadVideo = () => { |
| 210 | if (userInfo.value.can_upload === 1) { // 可以上传 | 210 | if (userInfo.value.can_upload === 1) { // 可以上传 |
| 211 | - show.value = true; | 211 | + // show.value = true; |
| 212 | // x_field_1 是金数据表单传入的参数,家长上传的格式为:user_id-book_id-perf_id,perf_id是当前缺省的儿童id | 212 | // x_field_1 是金数据表单传入的参数,家长上传的格式为:user_id-book_id-perf_id,perf_id是当前缺省的儿童id |
| 213 | const str = `${userInfo.value.user_id}-${$route.query.id}-${userInfo.value.perf_id}`; | 213 | const str = `${userInfo.value.user_id}-${$route.query.id}-${userInfo.value.perf_id}`; |
| 214 | // 已读隐私条例,直接跳转上传页面 | 214 | // 已读隐私条例,直接跳转上传页面 |
| 215 | - if (Cookies.get('privacy_notice')) { | 215 | + // TODO: 暂时屏蔽已读不显示,方便测试 |
| 216 | + if (!Cookies.get('privacy_notice')) { | ||
| 216 | location.href = `${JSJ_FORM_C}?x_field_1=${str}`; | 217 | location.href = `${JSJ_FORM_C}?x_field_1=${str}`; |
| 217 | // BUG: 关闭loading临时处理 | 218 | // BUG: 关闭loading临时处理 |
| 218 | - setTimeout(() => { | 219 | + // setTimeout(() => { |
| 219 | - show.value = false; | 220 | + // show.value = false; |
| 220 | - }, 2000); | 221 | + // }, 2000); |
| 221 | } else { // 跳转个人隐私阅读 | 222 | } else { // 跳转个人隐私阅读 |
| 222 | $router.push({ | 223 | $router.push({ |
| 223 | path: '/client/privacyNotice', | 224 | path: '/client/privacyNotice', | ... | ... |
-
Please register or login to post a comment