Explorar el Código

活动中进入报告增加时间戳

jwyu hace 3 años
padre
commit
2b4d8dd9ec
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      pages-activity/reportDetail.vue

+ 2 - 1
pages-activity/reportDetail.vue

@@ -13,7 +13,8 @@ export default {
 
         const eventChannel = this.getOpenerEventChannel()
         eventChannel.on('webUrl', (data)=> {
-            this.url=`${data.url}&token=${this.$store.state.user.token}`
+            const timestamp=new Date().getTime()
+            this.url=`${data.url}&token=${this.$store.state.user.token}&timestamp=${timestamp}`
         })
     }
 }