Browse Source

feat: 短剧组推广 - H5

zhengxy 2 years ago
parent
commit
0375bceba2

File diff suppressed because it is too large
+ 0 - 1
qwh5/dist/css/playletGroupH5.2e9760ef.css


File diff suppressed because it is too large
+ 1 - 0
qwh5/dist/css/playletGroupH5.49d32279.css


File diff suppressed because it is too large
+ 1 - 1
qwh5/dist/index.html


File diff suppressed because it is too large
+ 1 - 1
qwh5/dist/js/app.dbe1e7d4.js


File diff suppressed because it is too large
+ 0 - 1
qwh5/dist/js/playletGroupH5.c97053dd.js


File diff suppressed because it is too large
+ 1 - 0
qwh5/dist/js/playletGroupH5.fa2aa311.js


+ 4 - 1
qwh5/src/views/playletGroupH5.vue

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