hookehuyr

fix

...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 * @Author: hookehuyr hookehuyr@gmail.com 2 * @Author: hookehuyr hookehuyr@gmail.com
3 * @Date: 2022-05-31 12:06:19 3 * @Date: 2022-05-31 12:06:19
4 * @LastEditors: hookehuyr hookehuyr@gmail.com 4 * @LastEditors: hookehuyr hookehuyr@gmail.com
5 - * @LastEditTime: 2022-06-01 00:50:37 5 + * @LastEditTime: 2022-06-03 00:05:56
6 * @FilePath: /tswj/src/main.js 6 * @FilePath: /tswj/src/main.js
7 * @Description: 7 * @Description:
8 */ 8 */
...@@ -12,7 +12,7 @@ import router from './router'; ...@@ -12,7 +12,7 @@ import router from './router';
12 import App from './App.vue'; 12 import App from './App.vue';
13 // import axios from './utils/axios'; 13 // import axios from './utils/axios';
14 import axios from '@/utils/axios'; 14 import axios from '@/utils/axios';
15 -import 'default-passive-events'; // 解决Chrome控制台non-passive event listener输出问题 15 +// import 'default-passive-events'; // 解决Chrome控制台non-passive event listener输出问题
16 import { createPinia } from 'pinia'; 16 import { createPinia } from 'pinia';
17 17
18 const pinia = createPinia(); 18 const pinia = createPinia();
......
...@@ -22,9 +22,11 @@ export const styleObject2 = ref({ ...@@ -22,9 +22,11 @@ export const styleObject2 = ref({
22 }) 22 })
23 23
24 export const styleObject3 = ref({ 24 export const styleObject3 = ref({
25 - backgroundColor: '#6D97D2', 25 + // backgroundColor: '#6D97D2',
26 + backgroundColor: '#F4675A',
26 color: styleColor.baseFontColor, 27 color: styleColor.baseFontColor,
27 - borderColor: '#6D97D2' 28 + // borderColor: '#6D97D2'
29 + borderColor: '#F4675A'
28 }) 30 })
29 31
30 export const styleObject4 = ref({ 32 export const styleObject4 = ref({
......
...@@ -230,6 +230,9 @@ const uploadVideo = () => { ...@@ -230,6 +230,9 @@ const uploadVideo = () => {
230 str 230 str
231 } 231 }
232 }) 232 })
233 + setTimeout(() => {
234 + show.value = false;
235 + }, 2000);
233 } 236 }
234 } else if (userInfo.value.can_upload === -1) { // 未实名认证 237 } else if (userInfo.value.can_upload === -1) { // 未实名认证
235 showNotice.value = true; 238 showNotice.value = true;
......
...@@ -44,9 +44,6 @@ const $router = useRouter(); ...@@ -44,9 +44,6 @@ const $router = useRouter();
44 44
45 const disagree = () => { 45 const disagree = () => {
46 $router.go(-1); 46 $router.go(-1);
47 - setTimeout(() => {
48 - show.value = false;
49 - }, 2000);
50 } 47 }
51 48
52 const show = ref(false); // 跳转等待提示 49 const show = ref(false); // 跳转等待提示
......