This commit is contained in:
Zheng Jie
2022-08-01 10:52:32 +08:00
parent bbb6f45f39
commit fdaa75d5a4

View File

@@ -6,6 +6,7 @@
</keep-alive> </keep-alive>
</transition> </transition>
<div <div
v-if="isActive"
class="wwads-cn wwads-vertical" class="wwads-cn wwads-vertical"
data-id="148" data-id="148"
style="z-index:10000;position:fixed;bottom:33px;right:5px;max-width:200px;padding:10px;border-radius:5px;" style="z-index:10000;position:fixed;bottom:33px;right:5px;max-width:200px;padding:10px;border-radius:5px;"
@@ -23,7 +24,7 @@ export default {
name: 'AppMain', name: 'AppMain',
data() { data() {
return { return {
adKey: 'def' isActive: true
} }
}, },
computed: { computed: {
@@ -33,6 +34,20 @@ export default {
key() { key() {
return this.$route.path return this.$route.path
} }
},
watch: {
'$route.path': {
handler: function() {
this.isActive = false
this.$nextTick(() => {
this.isActive = true
})
var hm = document.createElement('script')
hm.src = '//cdn.wwads.cn/js/makemoney.js'
var s = document.getElementsByTagName('script')[0]
s.parentNode.insertBefore(hm, s)
}
}
} }
} }
</script> </script>