refactor: remove Google Ads component from top_rice.vue and update favicon.ico

main
tangjinzhou 2025-09-20 14:30:15 +08:00
parent fcdda4a0be
commit bbb7670df1
2 changed files with 0 additions and 8 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 172 KiB

View File

@ -9,12 +9,6 @@
</template>
</a-carousel>
</template>
<template v-else-if="showGoogleAd">
<!-- <template v-if="isCN">
<WWAds :key="`WWAds_${$route.path}`" />
</template> -->
<google-ads-top :key="`GoogleAdsTop_${$route.path}`" />
</template>
</div>
</template>
@ -22,14 +16,12 @@
import dayjs from 'dayjs';
import isBetween from 'dayjs/plugin/isBetween';
dayjs.extend(isBetween);
import GoogleAdsTop from './GoogleAdsTop.vue';
// import WWAds from './WWAds.vue';
const isEffective = (start, end) => {
return dayjs().isBetween(start, end);
};
export default {
components: {
GoogleAdsTop,
// WWAds,
},
props: ['isCN', 'isMobile'],