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 17:57:31 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d7493f673f2b9e018bc1647f729d2169e8255cd1
d7493f67
1 parent
d66390e4
暂时屏蔽已读不显示,方便测试
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
src/views/client/bookDetail.vue
src/views/client/bookDetail.vue
View file @
d7493f6
...
...
@@ -208,16 +208,17 @@ const noticeHtml = ref('')
const show = ref(false); // 跳转等待提示
const uploadVideo = () => {
if (userInfo.value.can_upload === 1) { // 可以上传
show.value = true;
//
show.value = true;
// x_field_1 是金数据表单传入的参数,家长上传的格式为:user_id-book_id-perf_id,perf_id是当前缺省的儿童id
const str = `${userInfo.value.user_id}-${$route.query.id}-${userInfo.value.perf_id}`;
// 已读隐私条例,直接跳转上传页面
if (Cookies.get('privacy_notice')) {
// TODO: 暂时屏蔽已读不显示,方便测试
if (!Cookies.get('privacy_notice')) {
location.href = `${JSJ_FORM_C}?x_field_1=${str}`;
// BUG: 关闭loading临时处理
setTimeout(() => {
show.value = false;
}, 2000);
//
setTimeout(() => {
//
show.value = false;
//
}, 2000);
} else { // 跳转个人隐私阅读
$router.push({
path: '/client/privacyNotice',
...
...
Please
register
or
login
to post a comment