Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
tswj
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2022-06-02 18:03:19 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0a100cb446db318b931c4bcd8ab8f05132b518fc
0a100cb4
1 parent
b0f712a9
fix
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
8 deletions
src/views/client/bookDetail.vue
src/views/client/bookDetail.vue
View file @
0a100cb
...
...
@@ -213,20 +213,26 @@ const uploadVideo = () => {
const str = `${userInfo.value.user_id}-${$route.query.id}-${userInfo.value.perf_id}`;
// 已读隐私条例,直接跳转上传页面
// TODO: 暂时屏蔽已读不显示,方便测试
if (!Cookies.get('privacy_notice')) {
location.href = `${JSJ_FORM_C}?x_field_1=${str}`;
// BUG: 关闭loading临时处理
// setTimeout(() => {
// show.value = false;
// }, 2000);
} else { // 跳转个人隐私阅读
$router.push({
path: '/client/privacyNotice',
query: {
str
}
})
}
// if (Cookies.get('privacy_notice')) {
// location.href = `${JSJ_FORM_C}?x_field_1=${str}`;
// // BUG: 关闭loading临时处理
// // setTimeout(() => {
// // show.value = false;
// // }, 2000);
// } else { // 跳转个人隐私阅读
// $router.push({
// path: '/client/privacyNotice',
// query: {
// str
// }
// })
// }
} else if (userInfo.value.can_upload === -1) { // 未实名认证
showNotice.value = true;
noticeText.value = '前往认证'
...
...
Please
register
or
login
to post a comment