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 @@
+
+
+
+
+
+
+
+ {{ item.title }}
+
+
+
+
+
+
+ {{ item.tagTitle }}
+
+
+
+ {{ item.description }}
+
+
+ {{ item.date }}
+
+
+
+
+
+
+
+
+
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 @@
-
+
-
-
+
+
+
+
消息通知
-
-
- 我这辈子最疯狂的事,发生在我在 Amazon 当软件工程师的时候,故事是这样的:
-
-
- “威尔!着火了!快来帮忙!”我听到女朋友大喊。现在一个难题在我面前——是恢复一个重要的 Amazon 服务,还是救公寓的火。
-
-
- 但是忽然,公寓的烟味消失,火警也停了。我的女朋友走进了房间,让我震惊的是,她摘下了自己的假发,她是 Jeff
+
+
+
+
+ {{ item.name }}
+
+
+
+
@@ -26,9 +28,108 @@
diff --git a/src/layouts/components/index.ts b/src/layouts/components/index.ts
index aac579c..8ccd4f5 100644
--- a/src/layouts/components/index.ts
+++ b/src/layouts/components/index.ts
@@ -17,6 +17,9 @@ import Reload from './header/Reload.vue';
/* 标签栏组件 */
import TabBar from './tab/TabBar.vue';
+/* 其他组件 */
+// 返回顶部
+import BackTop from './common/BackTop.vue';
export {
Breadcrumb,
CollapaseButton,
@@ -31,4 +34,5 @@ export {
Search,
Reload,
TabBar,
+ BackTop,
};
diff --git a/src/service/index.ts b/src/service/index.ts
index 3734566..009a277 100644
--- a/src/service/index.ts
+++ b/src/service/index.ts
@@ -1,2 +1,3 @@
export * from './api/test';
export * from './api/login';
+export * from './api/mock';
diff --git a/src/types/components.d.ts b/src/types/components.d.ts
new file mode 100644
index 0000000..87dc09f
--- /dev/null
+++ b/src/types/components.d.ts
@@ -0,0 +1,18 @@
+// generated by unplugin-vue-components
+// We suggest you to commit this file into source control
+// Read more: https://github.com/vuejs/core/pull/3399
+import '@vue/runtime-core';
+
+export {};
+
+declare module '@vue/runtime-core' {
+ export interface GlobalComponents {
+ EIcon: typeof import('./../components/custom/EIcon.vue')['default'];
+ ErrorTip: typeof import('./../components/common/ErrorTip.vue')['default'];
+ NaiveProvider: typeof import('./../components/common/NaiveProvider.vue')['default'];
+ Pagination: typeof import('./../components/custom/Pagination.vue')['default'];
+ RouterLink: typeof import('vue-router')['RouterLink'];
+ RouterView: typeof import('vue-router')['RouterView'];
+ SvgIcon: typeof import('./../components/custom/SvgIcon.vue')['default'];
+ }
+}
diff --git a/src/types/api.d.ts b/src/typings/api.d.ts
similarity index 100%
rename from src/types/api.d.ts
rename to src/typings/api.d.ts
diff --git a/src/types/business.d.ts b/src/typings/business.d.ts
similarity index 62%
rename from src/types/business.d.ts
rename to src/typings/business.d.ts
index 865f40c..5647940 100644
--- a/src/types/business.d.ts
+++ b/src/typings/business.d.ts
@@ -28,3 +28,22 @@ declare namespace Auth {
password: string;
}
}
+/* 系统消息 */
+declare namespace Message {
+ interface Tab {
+ key: number;
+ name: string;
+ badgeProps?: import('naive-ui').BadgeProps;
+ list: List[];
+ }
+ interface List {
+ id: number;
+ title: string;
+ icon: string;
+ tagTitle?: string;
+ tagType?: 'error' | 'info' | 'success' | 'warning';
+ description?: string;
+ isRead?: boolean;
+ date: string;
+ }
+}
diff --git a/src/typings/components.d.ts b/src/typings/components.d.ts
new file mode 100644
index 0000000..830e0a4
--- /dev/null
+++ b/src/typings/components.d.ts
@@ -0,0 +1,75 @@
+// generated by unplugin-vue-components
+// We suggest you to commit this file into source control
+// Read more: https://github.com/vuejs/core/pull/3399
+import '@vue/runtime-core';
+
+export {};
+
+declare module '@vue/runtime-core' {
+ export interface GlobalComponents {
+ EIcon: typeof import('./../components/custom/EIcon.vue')['default'];
+ ErrorTip: typeof import('./../components/common/ErrorTip.vue')['default'];
+ IIconParkOutlineAddOne: typeof import('~icons/icon-park-outline/add-one')['default'];
+ IIconParkOutlineAfferent: typeof import('~icons/icon-park-outline/afferent')['default'];
+ IIconParkOutlineDownload: typeof import('~icons/icon-park-outline/download')['default'];
+ IIconParkOutlineFullScreenTwo: typeof import('~icons/icon-park-outline/full-screen-two')['default'];
+ IIconParkOutlineGithub: typeof import('~icons/icon-park-outline/github')['default'];
+ IIconParkOutlineMenuFold: typeof import('~icons/icon-park-outline/menu-fold')['default'];
+ IIconParkOutlineMenuUnfold: typeof import('~icons/icon-park-outline/menu-unfold')['default'];
+ IIconParkOutlineMoon: typeof import('~icons/icon-park-outline/moon')['default'];
+ IIconParkOutlineOffScreenTwo: typeof import('~icons/icon-park-outline/off-screen-two')['default'];
+ IIconParkOutlineRedo: typeof import('~icons/icon-park-outline/redo')['default'];
+ IIconParkOutlineRefresh: typeof import('~icons/icon-park-outline/refresh')['default'];
+ IIconParkOutlineRemind: typeof import('~icons/icon-park-outline/remind')['default'];
+ IIconParkOutlineSearch: typeof import('~icons/icon-park-outline/search')['default'];
+ IIconParkOutlineSettingTwo: typeof import('~icons/icon-park-outline/setting-two')['default'];
+ IIconParkOutlineSun: typeof import('~icons/icon-park-outline/sun')['default'];
+ IIconParkOutlineToTop: typeof import('~icons/icon-park-outline/to-top')['default'];
+ NaiveProvider: typeof import('./../components/common/NaiveProvider.vue')['default'];
+ NAvatar: typeof import('naive-ui')['NAvatar'];
+ NBackTop: typeof import('naive-ui')['NBackTop'];
+ NBadge: typeof import('naive-ui')['NBadge'];
+ NBreadcrumb: typeof import('naive-ui')['NBreadcrumb'];
+ NBreadcrumbItem: typeof import('naive-ui')['NBreadcrumbItem'];
+ NButton: typeof import('naive-ui')['NButton'];
+ NCard: typeof import('naive-ui')['NCard'];
+ NConfigProvider: typeof import('naive-ui')['NConfigProvider'];
+ NDataTable: typeof import('naive-ui')['NDataTable'];
+ NDialogProvider: typeof import('naive-ui')['NDialogProvider'];
+ NDrawer: typeof import('naive-ui')['NDrawer'];
+ NDrawerContent: typeof import('naive-ui')['NDrawerContent'];
+ NDropdown: typeof import('naive-ui')['NDropdown'];
+ NEllipsis: typeof import('naive-ui')['NEllipsis'];
+ NForm: typeof import('naive-ui')['NForm'];
+ NFormItemGi: typeof import('naive-ui')['NFormItemGi'];
+ NGi: typeof import('naive-ui')['NGi'];
+ NGrid: typeof import('naive-ui')['NGrid'];
+ NIcon: typeof import('naive-ui')['NIcon'];
+ NInput: typeof import('naive-ui')['NInput'];
+ NLayout: typeof import('naive-ui')['NLayout'];
+ NLayoutContent: typeof import('naive-ui')['NLayoutContent'];
+ NLayoutFooter: typeof import('naive-ui')['NLayoutFooter'];
+ NLayoutHeader: typeof import('naive-ui')['NLayoutHeader'];
+ NLayoutSider: typeof import('naive-ui')['NLayoutSider'];
+ NList: typeof import('naive-ui')['NList'];
+ NListItem: typeof import('naive-ui')['NListItem'];
+ NLoadingBarProvider: typeof import('naive-ui')['NLoadingBarProvider'];
+ NMenu: typeof import('naive-ui')['NMenu'];
+ NMessageProvider: typeof import('naive-ui')['NMessageProvider'];
+ NNotificationProvider: typeof import('naive-ui')['NNotificationProvider'];
+ NPagination: typeof import('naive-ui')['NPagination'];
+ NPopover: typeof import('naive-ui')['NPopover'];
+ NScrollbar: typeof import('naive-ui')['NScrollbar'];
+ NSpace: typeof import('naive-ui')['NSpace'];
+ NTab: typeof import('naive-ui')['NTab'];
+ NTabPane: typeof import('naive-ui')['NTabPane'];
+ NTabs: typeof import('naive-ui')['NTabs'];
+ NTag: typeof import('naive-ui')['NTag'];
+ NThing: typeof import('naive-ui')['NThing'];
+ NTooltip: typeof import('naive-ui')['NTooltip'];
+ Pagination: typeof import('./../components/custom/Pagination.vue')['default'];
+ RouterLink: typeof import('vue-router')['RouterLink'];
+ RouterView: typeof import('vue-router')['RouterView'];
+ SvgIcon: typeof import('./../components/custom/SvgIcon.vue')['default'];
+ }
+}
diff --git a/src/types/env.d.ts b/src/typings/env.d.ts
similarity index 100%
rename from src/types/env.d.ts
rename to src/typings/env.d.ts
diff --git a/src/types/global.d.ts b/src/typings/global.d.ts
similarity index 100%
rename from src/types/global.d.ts
rename to src/typings/global.d.ts
diff --git a/src/types/package.d.ts b/src/typings/package.d.ts
similarity index 100%
rename from src/types/package.d.ts
rename to src/typings/package.d.ts
diff --git a/src/types/route.d.ts b/src/typings/route.d.ts
similarity index 100%
rename from src/types/route.d.ts
rename to src/typings/route.d.ts
diff --git a/src/types/router.d.ts b/src/typings/router.d.ts
similarity index 100%
rename from src/types/router.d.ts
rename to src/typings/router.d.ts
diff --git a/src/types/shims-vue.d.ts b/src/typings/shims-vue.d.ts
similarity index 100%
rename from src/types/shims-vue.d.ts
rename to src/typings/shims-vue.d.ts
diff --git a/src/types/system.d.ts b/src/typings/system.d.ts
similarity index 100%
rename from src/types/system.d.ts
rename to src/typings/system.d.ts
diff --git a/src/views/list/commonList/index.vue b/src/views/list/commonList/index.vue
index eb7bb3a..ab4d680 100644
--- a/src/views/list/commonList/index.vue
+++ b/src/views/list/commonList/index.vue
@@ -1,44 +1,34 @@
-
-
-
- 姓名
-
-
-
-
-
- 年龄
-
-
-
-
-
- 性别
-
-
-
-
-
- 地址
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
搜索
-
+
+
+
重置
-
-
-
+
+
+
@@ -65,19 +55,17 @@
diff --git a/unocss.config.ts b/unocss.config.ts
index 0adac56..922bf11 100644
--- a/unocss.config.ts
+++ b/unocss.config.ts
@@ -8,4 +8,9 @@ export default defineConfig({
'flex-x-center': 'flex justify-center',
'flex-y-center': 'flex items-center',
},
+ theme: {
+ colors: {
+ primary: '#165DFFFF',
+ },
+ },
});