diff --git a/.eslintrc.js b/.eslintrc.js index 95a1951..67bbe72 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -27,12 +27,30 @@ module.exports = { '@vue/eslint-config-prettier', '@vue/typescript/recommended', ], + overrides: [ + { + files: ['*.vue'], + parser: 'vue-eslint-parser', + parserOptions: { + parser: '@typescript-eslint/parser' + }, + rules: { + 'no-undef': 'off' + } + }, + { + files: ['*.html'], + rules: { + 'vue/comment-directive': 'off' + } + } + ], rules: { // TSESLint docs https://typescript-eslint.io/rules/ - 'no-var': 'error', // 禁止使用var - 'no-unused-vars': 'off', // 允许声明不使用的值 - 'no-console': 'off', // 允许出现console - 'no-debugger': 'off', // 关闭debugger警告 + // 'no-var': 'error', // 禁止使用var + // 'no-unused-vars': 'off', // 允许声明不使用的值 + // 'no-console': 'off', // 允许出现console + // 'no-debugger': 'off', // 关闭debugger警告 'vue/multi-word-component-names': 0, // 关闭文件名多单词 // 'import/no-unresolved': ['error', { ignore: ['~icons/*'] }], "@typescript-eslint/no-explicit-any": ["off"], // 允许使用any diff --git a/.gitignore b/.gitignore index d89c92c..903e706 100644 --- a/.gitignore +++ b/.gitignore @@ -28,4 +28,4 @@ stats.html pnpm-lock.yaml package-lock.json yarn.lock -/src/types/components.d.ts +/src/typings/components.d.ts diff --git a/build/plugins/unplugin.ts b/build/plugins/unplugin.ts index 12ff80f..7c2a21b 100644 --- a/build/plugins/unplugin.ts +++ b/build/plugins/unplugin.ts @@ -7,7 +7,7 @@ import path from 'path'; export default [ Components({ - dts: 'src/types/components.d.ts', + dts: 'src/typings/components.d.ts', resolvers: [IconsResolver(), NaiveUiResolver()], }), Icons({ diff --git a/mock/module/list.ts b/mock/module/list.ts index 0224086..3d02a96 100644 --- a/mock/module/list.ts +++ b/mock/module/list.ts @@ -2,7 +2,7 @@ import Mock from 'mockjs'; import { resultSuccess } from '../utils'; const userList = Mock.mock({ - 'list|10': [ + 'list|20': [ { id: '@id', name: '@cname', diff --git a/src/layouts/BasicLayout/index.vue b/src/layouts/BasicLayout/index.vue index b0516be..262fbb7 100644 --- a/src/layouts/BasicLayout/index.vue +++ b/src/layouts/BasicLayout/index.vue @@ -14,7 +14,7 @@ - + @@ -22,7 +22,7 @@ -
+
@@ -30,6 +30,7 @@ +
{{ appStore.footerText }} @@ -54,6 +55,7 @@ import { Search, Reload, TabBar, + BackTop, } from '../components'; const appStore = useAppStore(); diff --git a/src/layouts/components/common/BackTop.vue b/src/layouts/components/common/BackTop.vue new file mode 100644 index 0000000..b8b8cec --- /dev/null +++ b/src/layouts/components/common/BackTop.vue @@ -0,0 +1,16 @@ + + + + + diff --git a/src/layouts/components/common/NoticeList.vue b/src/layouts/components/common/NoticeList.vue new file mode 100644 index 0000000..07cb771 --- /dev/null +++ b/src/layouts/components/common/NoticeList.vue @@ -0,0 +1,45 @@ + + + + + diff --git a/src/layouts/components/header/Notices.vue b/src/layouts/components/header/Notices.vue index c17ccfc..7371460 100644 --- a/src/layouts/components/header/Notices.vue +++ b/src/layouts/components/header/Notices.vue @@ -1,24 +1,26 @@