feat: 修改埋点

This commit is contained in:
zyronon
2025-08-10 20:34:13 +08:00
parent 55e0e9b671
commit 66975fbe6e
5 changed files with 12 additions and 8 deletions

View File

@@ -416,7 +416,10 @@ a {
.book {
@extend .anim;
@apply p-4 rounded-md relative cursor-pointer h-40 bg-third hover:bg-card-active flex flex-col justify-between;
@apply p-4 rounded-md relative cursor-pointer bg-third hover:bg-card-active flex flex-col justify-between;
$w: 6rem;
width: $w;
height: calc($w * 1.4);
}
.line {

View File

@@ -92,7 +92,7 @@ const {
<div class="absolute text-2xl text-align-center w-full">{{ runtimeStore.editDict.name }}</div>
<div class="flex">
<BaseButton type="info" @click="isEdit = true">编辑</BaseButton>
<BaseButton type="info" @click="router.push('batch-edit-article')">文章管理</BaseButton>
<!-- <BaseButton type="info" @click="router.push('batch-edit-article')">文章管理</BaseButton>-->
<BaseButton :loading="studyLoading" @click="addMyStudyList">学习</BaseButton>
</div>
</div>

View File

@@ -376,11 +376,11 @@ const {playSentenceAudio} = usePlaySentenceAudio()
:title="`开关释义显示(${settingStore.shortcutKeyMap[ShortcutKey.ToggleShowTranslate]})`"
@click="settingStore.translate = !settingStore.translate"/>
<BaseIcon
:title="`编辑(${settingStore.shortcutKeyMap[ShortcutKey.EditArticle]})`"
icon="tabler:edit"
@click="emitter.emit(ShortcutKey.EditArticle)"
/>
<!-- <BaseIcon-->
<!-- :title="`编辑(${settingStore.shortcutKeyMap[ShortcutKey.EditArticle]})`"-->
<!-- icon="tabler:edit"-->
<!-- @click="emitter.emit(ShortcutKey.EditArticle)"-->
<!-- />-->
<BaseIcon
@click="settingStore.showPanel = !settingStore.showPanel"
:title="`面板(${settingStore.shortcutKeyMap[ShortcutKey.TogglePanel]})`"