diff --git a/src/components/Backgorund.vue b/src/components/Backgorund.vue
index e682caef..551af423 100644
--- a/src/components/Backgorund.vue
+++ b/src/components/Backgorund.vue
@@ -102,6 +102,7 @@ onMounted(() => {
canvas {
width: 100vw;
height: 100vh;
+ opacity: 0;
}
}
diff --git a/src/components/DictListPanel.vue b/src/components/DictListPanel.vue
index b4887402..88a0f9e6 100644
--- a/src/components/DictListPanel.vue
+++ b/src/components/DictListPanel.vue
@@ -5,8 +5,6 @@ import {$computed, $ref} from "vue/macros";
import {dictionaryResources} from "@/assets/dictionary.ts";
import {groupBy} from "lodash-es";
import {useBaseStore} from "@/stores/base.ts";
-import {useSettingStore} from "@/stores/setting.ts";
-import {useRuntimeStore} from "@/stores/runtime.ts";
import DictList from "@/components/list/DictList.vue";
import DictGroup from "@/components/list/DictGroup.vue";
@@ -15,8 +13,6 @@ const emit = defineEmits<{
selectDict: [val: { dict: any, index: number }]
}>()
const store = useBaseStore()
-const settingStore = useSettingStore()
-const runtimeStore = useRuntimeStore()
let currentLanguage = $ref('my')
let currentTranslateLanguage = $ref('common')
@@ -143,7 +139,7 @@ const groupedByCategoryAndTag = $computed(() => {
gap: 6rem;
&.active {
- $main: rgb(64,158,255);
+ $main: rgb(64, 158, 255);
border-bottom: 2px solid $main;
}
diff --git a/src/components/slide/SlideHorizontal.vue b/src/components/slide/SlideHorizontal.vue
index aa5c4b98..a1b0aee8 100644
--- a/src/components/slide/SlideHorizontal.vue
+++ b/src/components/slide/SlideHorizontal.vue
@@ -27,7 +27,7 @@ const props = defineProps({
type: Boolean,
default: true
},
- anim: {
+ slide: {
type: Boolean,
default: true
}
@@ -65,17 +65,17 @@ onMounted(() => {
})
function touchStart(e) {
- if (!props.anim) return
+ if (!props.slide) return
slideTouchStart(e, wrapperEl.value, state)
}
function touchMove(e) {
- if (!props.anim) return
+ if (!props.slide) return
slideTouchMove(e, wrapperEl.value, state, judgeValue, canNext, null, SlideType.HORIZONTAL)
}
function touchEnd(e) {
- if (!props.anim) return
+ if (!props.slide) return
slideTouchEnd(e, state, canNext, () => {
})
diff --git a/src/pages/mobile/DictManage.vue b/src/pages/mobile/DictManage.vue
index 1c487212..73e21d0b 100644
--- a/src/pages/mobile/DictManage.vue
+++ b/src/pages/mobile/DictManage.vue
@@ -1,15 +1,107 @@
+ {{ item.name }}
+