hookehuyr

🌈 style:

...@@ -42,25 +42,9 @@ import icon_dianzan2 from '@images/icon-dianzan02@2x.png' ...@@ -42,25 +42,9 @@ import icon_dianzan2 from '@images/icon-dianzan02@2x.png'
42 import icon_shoucang1 from '@images/icon-shoucang01@2x.png' 42 import icon_shoucang1 from '@images/icon-shoucang01@2x.png'
43 import icon_shoucang2 from '@images/icon-shoucang02@2x.png' 43 import icon_shoucang2 from '@images/icon-shoucang02@2x.png'
44 44
45 -import { ref, reactive, onMounted } from 'vue'
46 import 'mui-player/dist/mui-player.min.css' 45 import 'mui-player/dist/mui-player.min.css'
47 import MuiPlayer from 'mui-player' 46 import MuiPlayer from 'mui-player'
48 import _ from 'lodash'; 47 import _ from 'lodash';
49 -import axios from 'axios';
50 -import { Toast } from 'vant';
51 -
52 -import { useRoute, useRouter } from 'vue-router'
53 -const $route = useRoute();
54 -const $router = useRouter();
55 -
56 -const goTo = () => { // 跳转作品详情页
57 - $router.push({
58 - path: '/client/videoDetail'
59 - });
60 -}
61 -
62 -onMounted(() => {
63 -})
64 48
65 </script> 49 </script>
66 50
......
...@@ -121,13 +121,6 @@ const onLoad = () => { ...@@ -121,13 +121,6 @@ const onLoad = () => {
121 // 立即执行一次 121 // 立即执行一次
122 // onLoad(); 122 // onLoad();
123 123
124 -// 跳转个人中心
125 -const onSubmit = () => {
126 - $router.push({
127 - path: '/me/index'
128 - });
129 -}
130 -
131 /******** 留言框相关操作 START *******/ 124 /******** 留言框相关操作 START *******/
132 // 回复评论控件 125 // 回复评论控件
133 const showCommentBoxPopup = ref(false); 126 const showCommentBoxPopup = ref(false);
......