Showing
1 changed file
with
6 additions
and
3 deletions
| ... | @@ -50,9 +50,12 @@ const $route = useRoute(); | ... | @@ -50,9 +50,12 @@ const $route = useRoute(); |
| 50 | const $router = useRouter(); | 50 | const $router = useRouter(); |
| 51 | 51 | ||
| 52 | const getUserInfo = () => { | 52 | const getUserInfo = () => { |
| 53 | - $router.push({ | 53 | + $router.push({ |
| 54 | - path: '/client/personIndex' | 54 | + path: '/client/personIndex', |
| 55 | - }) | 55 | + query: { |
| 56 | + perf_id: videoInfo.value.perf_id | ||
| 57 | + } | ||
| 58 | + }) | ||
| 56 | } | 59 | } |
| 57 | 60 | ||
| 58 | const active = ref(0); // index 0 为简介,1 为留言 | 61 | const active = ref(0); // index 0 为简介,1 为留言 | ... | ... |
-
Please register or login to post a comment