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-03 00:14:34 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
532541b4f781ea2f7bf0e01bb90de7718b5506f5
532541b4
1 parent
3674a0ce
fix
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
7 deletions
src/main.js
src/settings/designSetting.js
src/views/client/bookDetail.vue
src/views/client/privacyNotice.vue
src/main.js
View file @
532541b
...
...
@@ -2,7 +2,7 @@
* @Author: hookehuyr hookehuyr@gmail.com
* @Date: 2022-05-31 12:06:19
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2022-06-0
1 00:50:37
* @LastEditTime: 2022-06-0
3 00:05:56
* @FilePath: /tswj/src/main.js
* @Description:
*/
...
...
@@ -12,7 +12,7 @@ import router from './router';
import
App
from
'./App.vue'
;
// import axios from './utils/axios';
import
axios
from
'@/utils/axios'
;
import
'default-passive-events'
;
// 解决Chrome控制台non-passive event listener输出问题
//
import 'default-passive-events'; // 解决Chrome控制台non-passive event listener输出问题
import
{
createPinia
}
from
'pinia'
;
const
pinia
=
createPinia
();
...
...
src/settings/designSetting.js
View file @
532541b
...
...
@@ -22,9 +22,11 @@ export const styleObject2 = ref({
})
export
const
styleObject3
=
ref
({
backgroundColor
:
'#6D97D2'
,
// backgroundColor: '#6D97D2',
backgroundColor
:
'#F4675A'
,
color
:
styleColor
.
baseFontColor
,
borderColor
:
'#6D97D2'
// borderColor: '#6D97D2'
borderColor
:
'#F4675A'
})
export
const
styleObject4
=
ref
({
...
...
src/views/client/bookDetail.vue
View file @
532541b
...
...
@@ -230,6 +230,9 @@ const uploadVideo = () => {
str
}
})
setTimeout(() => {
show.value = false;
}, 2000);
}
} else if (userInfo.value.can_upload === -1) { // 未实名认证
showNotice.value = true;
...
...
src/views/client/privacyNotice.vue
View file @
532541b
...
...
@@ -44,9 +44,6 @@ const $router = useRouter();
const disagree = () => {
$router.go(-1);
setTimeout(() => {
show.value = false;
}, 2000);
}
const show = ref(false); // 跳转等待提示
...
...
Please
register
or
login
to post a comment