|
@@ -12,7 +12,7 @@
|
12
|
12
|
<van-image class="p-img" :src="item.avatar" radius="10" fit="cover" />
|
13
|
13
|
</div>
|
14
|
14
|
</van-list> -->
|
15
|
|
- <div>{{ window.location.href }}</div>
|
|
15
|
+ <div>当前页面url:{{ currentUrl }}</div>
|
16
|
16
|
</div>
|
17
|
17
|
</template>
|
18
|
18
|
|
|
@@ -36,6 +36,8 @@ const params = reactive({
|
36
|
36
|
user_id: getQueryString('user_id'),
|
37
|
37
|
})
|
38
|
38
|
|
|
39
|
+const currentUrl = ref('')
|
|
40
|
+
|
39
|
41
|
// onBeforeMount(() => {//组件挂载之前
|
40
|
42
|
// if (getQueryString('againJump')) {
|
41
|
43
|
// params.corpid = getQueryString('corpid')
|
|
@@ -59,6 +61,7 @@ const params = reactive({
|
59
|
61
|
|
60
|
62
|
onMounted(() => {
|
61
|
63
|
// handleGetPlayletGroup()
|
|
64
|
+ currentUrl.value = window.location.href
|
62
|
65
|
})
|
63
|
66
|
|
64
|
67
|
|