From 1ad77b48783d05a43803a1cfd984e0386f29c700 Mon Sep 17 00:00:00 2001 From: "chen.home" <1147347984@qq.com> Date: Sat, 27 Aug 2022 22:48:04 +0800 Subject: [PATCH] =?UTF-8?q?feat(projects):=20=E5=A2=9E=E5=8A=A0=E6=B6=88?= =?UTF-8?q?=E6=81=AF=E4=B8=AD=E5=BF=83=E7=9B=B8=E5=85=B3=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc.js | 26 +++- .gitignore | 2 +- build/plugins/unplugin.ts | 2 +- mock/module/list.ts | 2 +- src/layouts/BasicLayout/index.vue | 6 +- src/layouts/components/common/BackTop.vue | 16 +++ src/layouts/components/common/NoticeList.vue | 45 +++++++ src/layouts/components/header/Notices.vue | 131 ++++++++++++++++--- src/layouts/components/index.ts | 4 + src/service/index.ts | 1 + src/types/components.d.ts | 18 +++ src/{types => typings}/api.d.ts | 0 src/{types => typings}/business.d.ts | 19 +++ src/typings/components.d.ts | 75 +++++++++++ src/{types => typings}/env.d.ts | 0 src/{types => typings}/global.d.ts | 0 src/{types => typings}/package.d.ts | 0 src/{types => typings}/route.d.ts | 0 src/{types => typings}/router.d.ts | 0 src/{types => typings}/shims-vue.d.ts | 0 src/{types => typings}/system.d.ts | 0 src/views/list/commonList/index.vue | 99 ++++++++------ unocss.config.ts | 5 + 23 files changed, 386 insertions(+), 65 deletions(-) create mode 100644 src/layouts/components/common/BackTop.vue create mode 100644 src/layouts/components/common/NoticeList.vue create mode 100644 src/types/components.d.ts rename src/{types => typings}/api.d.ts (100%) rename src/{types => typings}/business.d.ts (62%) create mode 100644 src/typings/components.d.ts rename src/{types => typings}/env.d.ts (100%) rename src/{types => typings}/global.d.ts (100%) rename src/{types => typings}/package.d.ts (100%) rename src/{types => typings}/route.d.ts (100%) rename src/{types => typings}/router.d.ts (100%) rename src/{types => typings}/shims-vue.d.ts (100%) rename src/{types => typings}/system.d.ts (100%) 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 @@