diff --git a/src/components/SelectTable/index.vue b/src/components/SelectTable/index.vue index 30ca499..b05183c 100644 --- a/src/components/SelectTable/index.vue +++ b/src/components/SelectTable/index.vue @@ -45,7 +45,7 @@ + + \ No newline at end of file diff --git a/src/utils/classCom.ts b/src/utils/classCom.ts index 94f8938..4819eb4 100644 --- a/src/utils/classCom.ts +++ b/src/utils/classCom.ts @@ -114,7 +114,6 @@ import { ref, onMounted, onUnmounted, Ref } from 'vue'; */ function useAutoSize() { const autoSize = ref<'small' | 'default'>('default'); - console.log('333==>', 333); // 防抖函数,避免频繁触发 const debounce = (fn: Function, delay: number) => { let timer: number; @@ -126,7 +125,6 @@ function useAutoSize() { const calculateSize = () => { const screenWidth = window.innerWidth || document.documentElement.clientWidth; - console.log('screenWidth==>', screenWidth); autoSize.value = screenWidth < 1600 ? 'small' : 'default'; }; diff --git a/src/api/pinyin.js b/src/utils/pinyin.js similarity index 100% rename from src/api/pinyin.js rename to src/utils/pinyin.js diff --git a/src/views/liswork/work/components/DictInput.vue b/src/views/liswork/work/components/DictInput.vue index ab6569c..878d45b 100644 --- a/src/views/liswork/work/components/DictInput.vue +++ b/src/views/liswork/work/components/DictInput.vue @@ -1,16 +1,11 @@