├── .browserslistrc
├── public
├── favicon.ico
└── index.html
├── src
├── assets
│ ├── logo.png
│ ├── fonts
│ │ ├── iconfont.eot
│ │ ├── iconfont.ttf
│ │ ├── iconfont.woff
│ │ ├── iconfont.woff2
│ │ └── iconfont.svg
│ └── css
│ │ ├── element_ui.less
│ │ ├── transform.less
│ │ ├── mixin.less
│ │ ├── variables.less
│ │ ├── common.less
│ │ ├── sidebar.less
│ │ └── iconfont.less
├── store
│ ├── getters.ts
│ ├── index.ts
│ └── modules
│ │ ├── permission.ts
│ │ └── app.ts
├── shims.axios.d.ts
├── shims-vue.d.ts
├── layout
│ ├── BlankLayout.vue
│ ├── components
│ │ ├── AppMain.vue
│ │ ├── Breadcrumb.vue
│ │ ├── SideBar
│ │ │ ├── Index.vue
│ │ │ ├── Logo.vue
│ │ │ └── SideBarItem.vue
│ │ └── TopBar.vue
│ └── Index.vue
├── App.vue
├── components
│ ├── index.ts
│ ├── HeroPaging
│ │ └── index.vue
│ ├── HeroDatePicker
│ │ └── index.vue
│ ├── HeroTable
│ │ └── index.vue
│ └── HeroForm
│ │ └── index.vue
├── main.ts
├── views
│ ├── Home.vue
│ ├── Todo.vue
│ ├── Login.vue
│ ├── Form.vue
│ └── Table.vue
├── hooks
│ └── useClickOutside.ts
├── utils
│ ├── utils.ts
│ ├── request.ts
│ └── directives.ts
├── router
│ └── index.ts
└── plugin
│ └── element.ts
├── Dockerfile
├── .editorconfig
├── babel.config.js
├── .gitignore
├── vue.config.js
├── README.md
├── tsconfig.json
├── .eslintrc.js
└── package.json
/.browserslistrc:
--------------------------------------------------------------------------------
1 | > 1%
2 | last 2 versions
3 | not dead
4 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FinGet/vue3_elementPlus_ts/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/src/assets/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FinGet/vue3_elementPlus_ts/HEAD/src/assets/logo.png
--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM nginx:1.15-alpine
2 | COPY html /etc/nginx/html
3 | COPY conf /etc/nginx/
4 | WORKDIR /etc/nginx/html
--------------------------------------------------------------------------------
/src/assets/fonts/iconfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FinGet/vue3_elementPlus_ts/HEAD/src/assets/fonts/iconfont.eot
--------------------------------------------------------------------------------
/src/assets/fonts/iconfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FinGet/vue3_elementPlus_ts/HEAD/src/assets/fonts/iconfont.ttf
--------------------------------------------------------------------------------
/src/assets/fonts/iconfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FinGet/vue3_elementPlus_ts/HEAD/src/assets/fonts/iconfont.woff
--------------------------------------------------------------------------------
/src/assets/fonts/iconfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FinGet/vue3_elementPlus_ts/HEAD/src/assets/fonts/iconfont.woff2
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | [*.{js,jsx,ts,tsx,vue}]
2 | indent_style = tab
3 | indent_size = 2
4 | trim_trailing_whitespace = true
5 | insert_final_newline = true
6 |
--------------------------------------------------------------------------------
/src/store/getters.ts:
--------------------------------------------------------------------------------
1 | const getters = {
2 | sidebar: (state: any) => state.app.sidebar,
3 | routes: (state: any) => state.permission.routes
4 | };
5 | export default getters;
6 |
--------------------------------------------------------------------------------
/src/assets/css/element_ui.less:
--------------------------------------------------------------------------------
1 | .el-table td,
2 | .el-table th {
3 | padding: 8px 0;
4 | }
5 |
6 | .el-table__header th {
7 | background: #f5f7fa;
8 | color: #2f2f2f;
9 | }
10 |
--------------------------------------------------------------------------------
/src/shims.axios.d.ts:
--------------------------------------------------------------------------------
1 | import { AxiosRequestConfig } from 'axios';
2 |
3 | declare module 'axios' {
4 | export interface AxiosRequestConfig {
5 | successNotice? : boolean,
6 | errorNotice? : boolean
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/src/shims-vue.d.ts:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | declare module '*.vue' {
3 | import type { DefineComponent, ComponentInternalInstance } from 'vue'
4 | const component: DefineComponent<{}, {}, any>
5 | export default component
6 |
7 | }
8 |
--------------------------------------------------------------------------------
/src/layout/BlankLayout.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
13 |
14 |
17 |
--------------------------------------------------------------------------------
/src/store/index.ts:
--------------------------------------------------------------------------------
1 | import { createStore } from 'vuex';
2 | import app from './modules/app';
3 | import permission from './modules/permission';
4 | import getters from './getters';
5 | export default createStore({
6 | getters,
7 | modules: {
8 | app,
9 | permission
10 | }
11 | });
12 |
--------------------------------------------------------------------------------
/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: [
3 | '@vue/cli-plugin-babel/preset'
4 | ],
5 | plugins: [
6 | '@vue/babel-plugin-jsx',
7 | [
8 | 'component',
9 | {
10 | libraryName: 'element-plus',
11 | styleLibraryName: 'theme-chalk'
12 | }
13 | ]
14 | ]
15 | };
16 |
--------------------------------------------------------------------------------
/src/store/modules/permission.ts:
--------------------------------------------------------------------------------
1 | import { routes } from '@/router/index';
2 |
3 | const state = {
4 | routes: routes
5 | };
6 |
7 | const mutations = {
8 |
9 | };
10 |
11 | const actions = {
12 |
13 | };
14 |
15 | export default {
16 | namespaced: true,
17 | state,
18 | mutations,
19 | actions
20 | };
21 |
--------------------------------------------------------------------------------
/src/App.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
14 |
--------------------------------------------------------------------------------
/src/components/index.ts:
--------------------------------------------------------------------------------
1 | import HeroTable from './HeroTable/index.vue';
2 | import HeroPaging from './HeroPaging/index.vue';
3 | import HeroForm from './HeroForm/index.vue';
4 | import HeroDatePicker from './HeroDatePicker/index.vue';
5 |
6 | export {
7 | HeroTable,
8 | HeroPaging,
9 | HeroForm,
10 | HeroDatePicker
11 | };
12 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 | /dist
4 |
5 |
6 | # local env files
7 | .env.local
8 | .env.*.local
9 |
10 | # Log files
11 | npm-debug.log*
12 | yarn-debug.log*
13 | yarn-error.log*
14 | pnpm-debug.log*
15 |
16 | # Editor directories and files
17 | .idea
18 | .vscode
19 | *.suo
20 | *.ntvs*
21 | *.njsproj
22 | *.sln
23 | *.sw?
24 |
--------------------------------------------------------------------------------
/vue.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | publicPath: process.env.NODE_ENV === 'production' ? '/' : '/',
3 | devServer: {
4 | open: false,
5 | disableHostCheck: true,
6 | proxy: {
7 | '/api': {
8 | target: 'http://www.kuaidi100.com',
9 | changeOrigin: true,
10 | pathRewrite: {
11 | '^/api': ''
12 | }
13 | }
14 | }
15 | }
16 | };
17 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # vue3_template
2 |
3 | ## Project setup
4 | ```
5 | yarn install
6 | ```
7 |
8 | ### Compiles and hot-reloads for development
9 | ```
10 | yarn serve
11 | ```
12 |
13 | ### Compiles and minifies for production
14 | ```
15 | yarn build
16 | ```
17 |
18 | ### Lints and fixes files
19 | ```
20 | yarn lint
21 | ```
22 |
23 | ### Customize configuration
24 | See [Configuration Reference](https://cli.vuejs.org/config/).
25 |
--------------------------------------------------------------------------------
/src/main.ts:
--------------------------------------------------------------------------------
1 | import { createApp } from 'vue';
2 | import App from './App.vue';
3 | import router from './router';
4 | import store from './store';
5 | import '@/assets/css/common.less';
6 | import element from './plugin/element';
7 | import axios from '@/utils/request';
8 | const app = createApp(App);
9 | element(app);
10 | app.config.performance = true;
11 |
12 | app.config.globalProperties.$http = axios;
13 |
14 | app.use(store);
15 | app.use(router);
16 | app.mount('#app');
17 |
--------------------------------------------------------------------------------
/src/views/Home.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
首页
4 |
5 |
6 |
7 |
21 |
--------------------------------------------------------------------------------
/src/assets/css/transform.less:
--------------------------------------------------------------------------------
1 | .fade-enter-active,
2 | .fade-leave-active {
3 | transition: opacity 0.28s;
4 | }
5 |
6 | .fade-enter,
7 | .fade-leave-active {
8 | opacity: 0;
9 | }
10 |
11 | // 面包屑动画
12 | .breadcrumb-enter-active,
13 | .breadcrumb-leave-active {
14 | transition: all .5s;
15 | }
16 |
17 | .breadcrumb-enter,
18 | .breadcrumb-leave-active {
19 | opacity: 0;
20 | transform: translateX(20px);
21 | }
22 |
23 | .breadcrumb-move {
24 | transition: all .5s;
25 | }
26 |
27 | .breadcrumb-leave-active {
28 | position: absolute;
29 | }
--------------------------------------------------------------------------------
/src/store/modules/app.ts:
--------------------------------------------------------------------------------
1 | interface State {
2 | sidebar: {
3 | opened: boolean;
4 | };
5 | }
6 |
7 | const state: State = {
8 | sidebar: {
9 | opened: true
10 | }
11 | };
12 |
13 | const mutations = {
14 | TOGGLE_SIDEBAR: (state: State) => {
15 | state.sidebar.opened = !state.sidebar.opened;
16 | // console.log(state.sidebar.opened)
17 | }
18 | };
19 |
20 | const actions = {
21 | toggleSideBar (context: any) {
22 | context.commit('TOGGLE_SIDEBAR');
23 | }
24 | };
25 |
26 | export default {
27 | namespaced: true,
28 | state,
29 | mutations,
30 | actions
31 | };
32 |
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | <%= htmlWebpackPlugin.options.title %>
9 |
10 |
11 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/src/hooks/useClickOutside.ts:
--------------------------------------------------------------------------------
1 | import { ref, onMounted, onUnmounted, Ref } from 'vue';
2 |
3 | const useClickOutside = (elementRef: Ref) => {
4 | const isClickOutside = ref(false);
5 | const handler = (e: MouseEvent) => {
6 | if (elementRef.value) {
7 | if (elementRef.value.contains(e.target as HTMLElement)) {
8 | isClickOutside.value = false;
9 | } else {
10 | isClickOutside.value = true;
11 | }
12 | }
13 | };
14 | onMounted(() => {
15 | document.addEventListener('click', handler);
16 | });
17 | onUnmounted(() => {
18 | document.removeEventListener('click', handler);
19 | });
20 | return isClickOutside;
21 | };
22 |
23 | export default useClickOutside;
24 |
--------------------------------------------------------------------------------
/src/assets/css/mixin.less:
--------------------------------------------------------------------------------
1 | .flex(@name, @val) {
2 | -webkit-@{name}: @val;
3 | -moz-@{name}: @val;
4 | -ms-@{name}: @val;
5 | -o-@{name}: @val;
6 | @{name}: @val;
7 | }
8 |
9 |
10 | .generate-width(@n, @i: 50) when (@i =< @n) {
11 | .width@{i}px {
12 | width: unit(@i,px);
13 | }
14 | .generate-width(@n, (@i + 50));
15 | }
16 |
17 | .generate-margin(@n, @d,@D,@i: 5) when (@i =< @n) {
18 | .margin@{d}@{i} {
19 | margin-@{D}: unit(@i,px) !important;
20 | }
21 | .generate-margin(@n, @d,@D,(@i + 5));
22 | }
23 |
24 | .generate-padding(@n, @d,@D,@i: 5) when (@i =< @n) {
25 | .padding@{d}@{i} {
26 | padding-@{D}: unit(@i,px) !important;
27 | }
28 | .generate-padding(@n, @d,@D,(@i + 5));
29 | }
--------------------------------------------------------------------------------
/src/utils/utils.ts:
--------------------------------------------------------------------------------
1 | // 防抖
2 | export function debounce (this: any, fn: Function, delay = 500) {
3 | let timer = 0;
4 | return (...args) => {
5 | if (timer) window.clearTimeout(timer);
6 | timer = window.setTimeout(() => {
7 | fn.apply(this, args);
8 | }, delay);
9 | };
10 | };
11 |
12 | // 节流
13 | export function throttle (this: any, fn: Function, interval = 500) {
14 | let last = 0;
15 | return (...args) => {
16 | let now = +new Date();
17 | // 还没到时间
18 | if (now - last < interval) return;
19 | last = now;
20 | fn.apply(this, args);
21 | };
22 | }
23 |
24 | export function html2Escape (sHtml: string) {
25 | const dict = { '<': '<', '>': '>', '&': '&', '"': '"' };
26 | return sHtml.replace(/[<>&"]/g, (c: string) => {
27 | return dict[c];
28 | });
29 | }
30 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "esnext",
4 | "module": "esnext",
5 | "strict": true,
6 | "jsx": "preserve",
7 | "importHelpers": true,
8 | "moduleResolution": "node",
9 | "experimentalDecorators": true,
10 | "skipLibCheck": true,
11 | "esModuleInterop": true,
12 | "allowSyntheticDefaultImports": true,
13 | "sourceMap": true,
14 | "baseUrl": ".",
15 | "noImplicitAny": false,
16 | "types": [
17 | "webpack-env"
18 | ],
19 | "paths": {
20 | "@/*": [
21 | "src/*"
22 | ]
23 | },
24 | "lib": [
25 | "esnext",
26 | "dom",
27 | "dom.iterable",
28 | "scripthost"
29 | ]
30 | },
31 | "include": [
32 | "src/**/*.ts",
33 | "src/**/*.tsx",
34 | "src/**/*.vue",
35 | "tests/**/*.ts",
36 | "tests/**/*.tsx"
37 | ],
38 | "exclude": [
39 | "node_modules"
40 | ]
41 | }
42 |
--------------------------------------------------------------------------------
/src/assets/css/variables.less:
--------------------------------------------------------------------------------
1 | // base color
2 | @blue:#324157;
3 | @light-blue:#3A71A8;
4 | @red:#C03639;
5 | @pink: #E65D6E;
6 | @green: #30B08F;
7 | @tiffany: #4AB7BD;
8 | @yellow:#FEC171;
9 | @panGreen: #30B08F;
10 |
11 | // sidebar
12 | @menuText:#bfcbd9;
13 | @menuActiveText:#409EFF;
14 | @subMenuActiveText:#409EFF; // https://github.com/ElemeFE/element/issues/12951
15 |
16 | @menuActiveBg: #ecf5ff;
17 |
18 | @menuBg:#ffffff;
19 | @menuHover:#ecf5ff;
20 |
21 | @subMenuBg:#fff;
22 | @subMenuHover:#ecf5ff;
23 |
24 | @sideBarWidth: 210px;
25 |
26 | // the :export directive is the magic sauce for webpack
27 | // https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass
28 | :export {
29 | menuText: @menuText;
30 | menuActiveText: @menuActiveText;
31 | subMenuActiveText: @subMenuActiveText;
32 | menuBg: @menuBg;
33 | menuHover: @menuHover;
34 | subMenuBg: @subMenuBg;
35 | subMenuHover: @subMenuHover;
36 | sideBarWidth: @sideBarWidth;
37 | }
38 |
--------------------------------------------------------------------------------
/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | root: true,
3 | env: {
4 | node: true
5 | },
6 | extends: [
7 | 'plugin:vue/vue3-essential',
8 | '@vue/standard',
9 | '@vue/typescript/recommended'
10 | ],
11 | parserOptions: {
12 | ecmaVersion: 2020
13 | },
14 | rules: {
15 | "semi": ["error", "always"],
16 | 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
17 | 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
18 | "indent": ["error", "tab"],
19 | "no-tabs": ["off", { allowIndentationTabs: true }],
20 | '@typescript-eslint/no-non-null-assertion': 'off',
21 | '@typescript-eslint/no-explicit-any': 'off',
22 | '@typescript-eslint/no-use-before-define': 'off',
23 | '@typescript-eslint/member-delimiter-style': 'off',
24 | 'no-extra-boolean-cast': 'off',
25 | '@typescript-eslint/no-unused-vars': 'off',
26 | '@typescript-eslint/no-var-requires': 'off',
27 | '@typescript-eslint/ban-ts-ignore': 'off',
28 | 'prefer-const': 'off'
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/src/layout/components/AppMain.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
29 |
30 |
45 |
--------------------------------------------------------------------------------
/src/views/Todo.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
{{ item.name }}
6 |
7 |
8 |
9 |
10 |
11 |
44 |
45 |
54 |
--------------------------------------------------------------------------------
/src/components/HeroPaging/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
12 |
13 |
14 |
15 |
53 |
54 |
57 |
--------------------------------------------------------------------------------
/src/components/HeroDatePicker/index.vue:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
13 |
14 |
15 |
16 |
17 |
55 |
56 |
59 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "vue3_template",
3 | "version": "0.1.0",
4 | "private": true,
5 | "scripts": {
6 | "serve": "vue-cli-service serve",
7 | "build": "vue-cli-service build",
8 | "lint": "vue-cli-service lint"
9 | },
10 | "dependencies": {
11 | "axios": "^0.21.1",
12 | "core-js": "^3.6.5",
13 | "element-plus": "^1.2.0-beta.5",
14 | "screenfull": "^5.1.0",
15 | "vue": "^3.2.0",
16 | "vue-class-component": "^8.0.0-0",
17 | "vue-router": "^4.0.0-0",
18 | "vuex": "^4.0.0-0"
19 | },
20 | "devDependencies": {
21 | "@typescript-eslint/eslint-plugin": "^2.33.0",
22 | "@typescript-eslint/parser": "^2.33.0",
23 | "@vue/babel-plugin-jsx": "^1.0.3",
24 | "@vue/cli-plugin-babel": "~4.5.0",
25 | "@vue/cli-plugin-eslint": "~4.5.0",
26 | "@vue/cli-plugin-router": "~4.5.0",
27 | "@vue/cli-plugin-typescript": "~4.5.0",
28 | "@vue/cli-plugin-vuex": "~4.5.0",
29 | "@vue/cli-service": "~4.5.0",
30 | "@vue/compiler-sfc": "^3.0.0",
31 | "@vue/eslint-config-standard": "^5.1.2",
32 | "@vue/eslint-config-typescript": "^5.0.2",
33 | "babel-plugin-component": "^1.1.1",
34 | "eslint": "^6.7.2",
35 | "eslint-plugin-import": "^2.20.2",
36 | "eslint-plugin-node": "^11.1.0",
37 | "eslint-plugin-promise": "^4.2.1",
38 | "eslint-plugin-standard": "^4.0.0",
39 | "eslint-plugin-vue": "^7.0.0-0",
40 | "less": "^3.0.4",
41 | "less-loader": "^5.0.0",
42 | "typescript": "~3.9.3"
43 | }
44 | }
45 |
--------------------------------------------------------------------------------
/src/router/index.ts:
--------------------------------------------------------------------------------
1 | import { createRouter, createWebHistory, RouteRecordRaw } from 'vue-router';
2 |
3 | import Layout from '@/layout/Index.vue';
4 | import BlankLayout from '@/layout/BlankLayout.vue';
5 | // : Array
6 | export const routes = [
7 | {
8 | path: '/',
9 | component: Layout,
10 | redirect: 'home',
11 | children: [
12 | {
13 | path: 'home',
14 | component: () => import('@/views/Home.vue'),
15 | name: 'Home',
16 | meta: { title: '首页', icon: 'el-icon-s-home' }
17 | },
18 | {
19 | path: 'data',
20 | component: BlankLayout,
21 | // component: { render (h: any) { return h('router-view'); } },
22 | name: 'Data',
23 | redirect: 'table',
24 | meta: { title: '数据', icon: 'el-icon-s-data' },
25 | children: [
26 | {
27 | path: 'table',
28 | component: () => import('@/views/Table.vue'),
29 | name: 'Table',
30 | meta: { title: '表格' }
31 | },
32 | {
33 | path: 'form',
34 | component: () => import('@/views/Form.vue'),
35 | name: 'Form',
36 | meta: { title: '表单' }
37 | }
38 | ]
39 | },
40 | {
41 | path: 'todo',
42 | component: () => import('@/views/Todo.vue'),
43 | name: 'Todo',
44 | meta: { title: '代办事项', icon: 'el-icon-notebook-1' }
45 | }
46 |
47 | ]
48 | },
49 | {
50 | path: '/login',
51 | name: 'Login',
52 | hidden: true,
53 | component: () => import('@/views/Login.vue')
54 | }
55 | ];
56 |
57 | const router = createRouter({
58 | history: createWebHistory(process.env.BASE_URL),
59 | routes
60 | });
61 |
62 | export default router;
63 |
--------------------------------------------------------------------------------
/src/layout/components/Breadcrumb.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | {{ item.meta.title }}
10 | {{ item.meta.title }}
11 |
12 |
13 |
14 |
15 |
16 |
17 |
46 |
47 |
57 |
--------------------------------------------------------------------------------
/src/views/Login.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 登陆
13 |
14 |
15 |
16 |
17 |
18 |
19 |
59 |
60 |
69 |
--------------------------------------------------------------------------------
/src/layout/components/SideBar/Index.vue:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
19 |
62 |
63 |
66 |
--------------------------------------------------------------------------------
/src/layout/Index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
16 |
17 | Vue3 + ts + Element Plus 后台管理系统模板
18 |
19 |
20 |
21 |
22 |
23 |
50 |
51 |
66 |
--------------------------------------------------------------------------------
/src/utils/request.ts:
--------------------------------------------------------------------------------
1 | import axios, { AxiosResponse, AxiosRequestConfig } from 'axios';
2 | import { ElMessage } from 'element-plus';
3 | const instance = axios.create({
4 | baseURL: process.env.VUE_APP_API_BASE_URL || '',
5 | timeout: 120 * 1000,
6 | withCredentials: true
7 | });
8 |
9 | const err = (error) => {
10 | if (error.message.includes('timeout')) {
11 | // console.log('error---->',error.config)
12 | ElMessage({
13 | message: '请求超时,请刷新网页重试',
14 | type: 'error'
15 | });
16 | }
17 | if (error.response) {
18 | const data = error.response.data;
19 | const token = '';
20 | if (error.response.status === 403) {
21 | ElMessage({
22 | message: 'Forbidden',
23 | type: 'error'
24 | });
25 | }
26 | if (error.response.status === 401 && !(data.result && data.result.isLogin)) {
27 | ElMessage({
28 | message: 'Unauthorized',
29 | type: 'error'
30 | });
31 | if (token) {
32 | // store.dispatch('Logout').then(() => {
33 | // setTimeout(() => {
34 | // window.location.reload();
35 | // }, 1500);
36 | // });
37 | }
38 | }
39 | }
40 | return Promise.reject(error);
41 | };
42 |
43 | type Config = AxiosRequestConfig & { successNotice? : boolean, errorNotice? : boolean}
44 |
45 | instance.interceptors.request.use((config: Config) => {
46 | config.headers['Access-Token'] = localStorage.getItem('token') || '';
47 | return config;
48 | }, err);
49 |
50 | instance.interceptors.response.use((response: AxiosResponse) => {
51 | console.log(response);
52 | const config: Config = response.config || '';
53 |
54 | const code = Number(response.data.status);
55 | if (code === 200) {
56 | if (config && config.successNotice) {
57 | ElMessage({
58 | message: response.data.msg,
59 | type: 'success'
60 | });
61 | }
62 | return response.data;
63 | } else {
64 | let errCode = [402, 403];
65 | if (errCode.includes(response.data.code)) {
66 | ElMessage({
67 | message: response.data.msg || '暂不不支持全屏',
68 | type: 'warning'
69 | });
70 | setTimeout(() => {
71 | window.location.reload();
72 | }, 500);
73 | }
74 | }
75 | }, err);
76 |
77 | export default instance;
78 |
--------------------------------------------------------------------------------
/src/components/HeroTable/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
11 |
12 |
13 |
14 |
15 | {{item.label || '自定义header'}}
16 |
17 |
18 | {{scope.row[item.prop] || '需要自定义' }}
19 |
20 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
32 |
33 |
86 |
--------------------------------------------------------------------------------
/src/views/Form.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 提交
5 |
6 |
7 |
8 |
90 |
91 |
94 |
--------------------------------------------------------------------------------
/src/layout/components/SideBar/Logo.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |

5 |
Vue3+EPlus+Ts
6 |
7 |
8 |
9 |
10 |
16 |
17 |
40 |
--------------------------------------------------------------------------------
/src/layout/components/SideBar/SideBarItem.vue:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 |
26 |
80 |
81 |
88 |
--------------------------------------------------------------------------------
/src/utils/directives.ts:
--------------------------------------------------------------------------------
1 | export const dialogDrag = {
2 | mounted (el, binding, vnode, oldVnode) {
3 | console.log(el);
4 | const dialogHeaderEl = el.querySelector('.el-dialog__header');
5 | const dragDom = el.querySelector('.el-dialog');
6 | // dialogHeaderEl.style.cursor = 'move';
7 | dialogHeaderEl.style.cssText += ';cursor:move;';
8 | dragDom.style.cssText += ';top:0px;';
9 |
10 | // 获取原有属性 ie dom元素.currentStyle 火狐谷歌 window.getComputedStyle(dom元素, null);
11 | const sty = (function () {
12 | if ((window.document as any).currentStyle) {
13 | return (dom, attr) => dom.currentStyle[attr];
14 | } else {
15 | return (dom, attr) => getComputedStyle(dom, null)[attr];
16 | }
17 | })();
18 |
19 | dialogHeaderEl.onmousedown = (e) => {
20 | // 鼠标按下,计算当前元素距离可视区的距离
21 | const disX = e.clientX - dialogHeaderEl.offsetLeft;
22 | const disY = e.clientY - dialogHeaderEl.offsetTop;
23 |
24 | // body当前宽度
25 | const screenWidth = document.body.clientWidth;
26 | // 可见区域高度(应为body高度,可某些环境下无法获取)
27 | const screenHeight = document.documentElement.clientHeight;
28 | // 对话框宽度
29 | const dragDomWidth = dragDom.offsetWidth;
30 | // 对话框高度
31 | const dragDomheight = dragDom.offsetHeight;
32 |
33 | const minDragDomLeft = dragDom.offsetLeft;
34 | const maxDragDomLeft = screenWidth - dragDom.offsetLeft - dragDomWidth;
35 |
36 | const minDragDomTop = dragDom.offsetTop;
37 | const maxDragDomTop = screenHeight - dragDom.offsetTop - dragDomheight;
38 |
39 | // 获取到的值带px 正则匹配替换
40 | let styL = sty(dragDom, 'left');
41 | let styT = sty(dragDom, 'top');
42 |
43 | // 注意在ie中 第一次获取到的值为组件自带50% 移动之后赋值为px
44 | if (styL.includes('%')) {
45 | styL = +document.body.clientWidth * (+styL.replace(/%/g, '') / 100);
46 | styT = +document.body.clientHeight * (+styT.replace(/%/g, '') / 100);
47 | } else {
48 | styL = +styL.replace(/\px/g, '');
49 | styT = +styT.replace(/\px/g, '');
50 | };
51 |
52 | document.onmousemove = function (e) {
53 | // 通过事件委托,计算移动的距离
54 | let left = e.clientX - disX;
55 | let top = e.clientY - disY;
56 |
57 | // 边界处理
58 | if (-(left) > minDragDomLeft) {
59 | left = -(minDragDomLeft);
60 | } else if (left > maxDragDomLeft) {
61 | left = maxDragDomLeft;
62 | }
63 |
64 | if (-(top) > minDragDomTop) {
65 | top = -(minDragDomTop);
66 | } else if (top > maxDragDomTop) {
67 | top = maxDragDomTop;
68 | }
69 |
70 | // 移动当前元素
71 | dragDom.style.cssText += `;left:${left + styL}px;top:${top + styT}px;`;
72 | };
73 |
74 | document.onmouseup = function (e) {
75 | document.onmousemove = null;
76 | document.onmouseup = null;
77 | };
78 | };
79 | }
80 | };
81 |
--------------------------------------------------------------------------------
/src/assets/css/common.less:
--------------------------------------------------------------------------------
1 | @import 'iconfont.less';
2 | @import './variables.less';
3 | @import './transform.less';
4 | @import './sidebar.less';
5 | @import './element_ui.less';
6 | @import './mixin.less';
7 |
8 | * {
9 | margin:0;
10 | padding:0;
11 | }
12 |
13 | html,body,#app,.wrapper{
14 | width:100%;
15 | height: 100%;
16 | }
17 | .width100 {
18 | width: 100% !important;
19 | }
20 | .height100 {
21 | height: 100% !important;
22 | }
23 |
24 | .generate-width(400);
25 |
26 | //------------- 常用margin,padding start ----------------//
27 | .generate-margin(30, T, top);
28 | .generate-margin(30, B, bottom);
29 | .generate-margin(30, L, left);
30 | .generate-margin(30, R, right);
31 | //------------- 常用margin,padding end ----------------//
32 | .generate-padding(30, T, top);
33 | .generate-padding(30, B, bottom);
34 | .generate-padding(30, L, left);
35 | .generate-padding(30, R, right);
36 |
37 |
38 | //------------- 常用margin,padding end ----------------//
39 |
40 | @align: left, right, center;
41 | // .text-center .text-left .text-right
42 | each(@align, {
43 | .text-@{value} {
44 | text-align: @value;
45 | }
46 | });
47 |
48 |
49 | .clearfix:after {
50 | visibility: hidden;
51 | display: block;
52 | font-size: 0;
53 | content: " ";
54 | clear: both;
55 | height: 0;
56 | }
57 | .fl {
58 | float: left;
59 | }
60 | .fr {
61 | float: right;
62 | }
63 |
64 | .ellipsis{
65 | white-space: nowrap;
66 | text-overflow: ellipsis;
67 | overflow: hidden
68 | }
69 |
70 |
71 | //------------- flex布局 start ----------------//
72 |
73 | .display-flex {
74 | display: -webkit-box;
75 | display: -moz-box;
76 | display: -ms-flexbox;
77 | display: -webkit-flex;
78 | display: flex;
79 | }
80 |
81 | .display-inline-flex {
82 | display: inline-flex;
83 | }
84 |
85 | .flex-1 {
86 | -webkit-box-flex: 1;
87 | -moz-box-flex: 1;
88 | -webkit-flex: 1;
89 | -ms-flex: 1;
90 | flex: 1;
91 | }
92 |
93 | .flex-2 {
94 | -webkit-box-flex: 2;
95 | -moz-box-flex: 2;
96 | -webkit-flex: 2;
97 | -ms-flex: 2;
98 | flex: 2;
99 | }
100 |
101 | .flex-row {
102 | .flex(flex-direction, row)
103 | }
104 |
105 | .flex-column {
106 | .flex(flex-direction, column)
107 | }
108 |
109 | .j-c-c {
110 | .flex(justify-content, center)
111 | }
112 |
113 | .j-c-f-e {
114 | .flex(justify-content, flex-end)
115 | }
116 |
117 | .j-c-s-b {
118 | .flex(justify-content, space-between)
119 | }
120 |
121 | .j-c-s-a {
122 | .flex(justify-content, space-around)
123 | }
124 |
125 | .a-i-c {
126 | .flex(align-items, center)
127 | }
128 |
129 | .flex-wrap {
130 | .flex(flex-wrap, wrap)
131 | }
132 |
133 | .flex-center {
134 | .display-flex();
135 | .j-c-c();
136 | .a-i-c();
137 | }
138 | //------------- flex布局 end ----------------//
139 |
140 | .btn {
141 | color: #409EFF;
142 | font-size: 14px;
143 | text-decoration: none;
144 | padding: 2px 3px;
145 | cursor: pointer;
146 | &:hover {
147 | color: #66b1ff;
148 | }
149 | &.red {
150 | color: #f56c6c;
151 | &:hover {
152 | color: #f78989;
153 | }
154 | }
155 | }
--------------------------------------------------------------------------------
/src/assets/css/sidebar.less:
--------------------------------------------------------------------------------
1 |
2 | .sidebar-container {
3 | transition: width 0.28s;
4 | width: @sideBarWidth !important;
5 | background-color: @menuBg;
6 | height: 100%;
7 | position: fixed;
8 | font-size: 0px;
9 | top: 0;
10 | bottom: 0;
11 | left: 0;
12 | z-index: 1001;
13 | overflow: hidden;
14 | text-align: left;
15 |
16 | // reset element-ui css
17 | .horizontal-collapse-transition {
18 | transition: 0s width ease-in-out, 0s padding-left ease-in-out, 0s padding-right ease-in-out;
19 | }
20 |
21 | .scrollbar-wrapper {
22 | overflow-x: hidden !important;
23 | }
24 |
25 | .el-scrollbar__bar.is-vertical {
26 | right: 0px;
27 | }
28 |
29 | .el-scrollbar {
30 | height: 100%;
31 | }
32 |
33 | &.has-logo {
34 | .el-scrollbar {
35 | height: calc(100% - 50px);
36 | }
37 | }
38 |
39 | .is-horizontal {
40 | display: none;
41 | }
42 |
43 | a {
44 | display: inline-block;
45 | width: 100%;
46 | overflow: hidden;
47 | }
48 |
49 | .svg-icon {
50 | margin-right: 16px;
51 | }
52 |
53 | .el-menu {
54 | border: none;
55 | height: 100%;
56 | width: 100% !important;
57 | border-right: 1px solid #e8e8e8;
58 | }
59 |
60 | // menu hover
61 | .submenu-title-noDropdown,
62 | .el-submenu__title {
63 | &:hover {
64 | background-color: @menuHover !important;
65 | }
66 | }
67 |
68 | .el-submenu.is-active,.el-menu-item.is-active {
69 | background-color: @menuActiveBg !important;
70 | }
71 | .is-active>.el-submenu__title, .is-active>.el-submenu__title i{
72 | color: @subMenuActiveText !important;
73 | }
74 | & .nest-menu .el-submenu>.el-submenu__title,
75 | & .el-submenu .el-menu-item {
76 | min-width: @sideBarWidth !important;
77 | background-color: @subMenuBg !important;
78 | // &.is-active {
79 | // background-color: @menuActiveBg !important;
80 | // }
81 |
82 | &:hover {
83 | background-color: @subMenuHover !important;
84 | }
85 | }
86 |
87 | }
88 |
89 | .hideSidebar {
90 | .sidebar-container {
91 | width: 64px !important;
92 | }
93 |
94 | .main-container {
95 | margin-left: 64px;
96 | }
97 |
98 | .submenu-title-noDropdown {
99 | padding: 0 !important;
100 | position: relative;
101 |
102 | .el-tooltip {
103 | padding: 0 !important;
104 |
105 | i {
106 | margin-left: 20px;
107 | }
108 | }
109 | }
110 | .el-submenu {
111 | overflow: hidden;
112 |
113 | &>.el-submenu__title {
114 | padding: 0 !important;
115 |
116 | i {
117 | margin-left: 20px;
118 | }
119 |
120 | .el-submenu__icon-arrow {
121 | display: none;
122 | }
123 | }
124 | }
125 | .el-menu--collapse {
126 | .el-submenu {
127 | &>.el-submenu__title {
128 | &>span {
129 | height: 0;
130 | width: 0;
131 | overflow: hidden;
132 | visibility: hidden;
133 | display: inline-block;
134 | }
135 | }
136 | }
137 | }
138 | }
139 |
140 | .el-submenu .el-menu-item,
141 | .el-menu-item, .el-submenu__title {
142 | height: 43px;
143 | line-height: 43px;
144 | }
145 | .el-container {
146 | height: 100%;
147 | }
148 |
149 | #app .sidebar-container.has-logo .el-scrollbar {
150 | height: calc(100% - 50px);
151 | }
--------------------------------------------------------------------------------
/src/components/HeroForm/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
11 |
12 |
13 |
14 |
15 |
16 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 | {{op[item.selectLabel]}}
30 |
31 |
32 |
33 |
34 | {{op[item.selectLabel]}}
35 |
36 |
37 |
38 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
92 |
93 |
96 |
--------------------------------------------------------------------------------
/src/plugin/element.ts:
--------------------------------------------------------------------------------
1 | import 'element-plus/lib/theme-chalk/index.css';
2 | import 'dayjs/locale/zh-cn';
3 | import locale from 'element-plus/lib/locale';
4 | import lang from 'element-plus/lib/locale/lang/zh-cn';
5 | import {
6 | ElAlert,
7 | ElAside,
8 | ElAutocomplete,
9 | ElAvatar,
10 | ElBacktop,
11 | ElBadge,
12 | ElBreadcrumb,
13 | ElBreadcrumbItem,
14 | ElButton,
15 | ElButtonGroup,
16 | ElCalendar,
17 | ElCard,
18 | ElCarousel,
19 | ElCarouselItem,
20 | ElCascader,
21 | ElCascaderPanel,
22 | ElCheckbox,
23 | ElCheckboxButton,
24 | ElCheckboxGroup,
25 | ElCol,
26 | ElCollapse,
27 | ElCollapseItem,
28 | ElCollapseTransition,
29 | ElColorPicker,
30 | ElContainer,
31 | ElDatePicker,
32 | ElDialog,
33 | ElDivider,
34 | ElDrawer,
35 | ElDropdown,
36 | ElDropdownItem,
37 | ElDropdownMenu,
38 | ElFooter,
39 | ElForm,
40 | ElFormItem,
41 | ElHeader,
42 | ElIcon,
43 | ElImage,
44 | ElInput,
45 | ElInputNumber,
46 | ElLink,
47 | ElMain,
48 | ElMenu,
49 | ElMenuItem,
50 | ElMenuItemGroup,
51 | ElOption,
52 | ElOptionGroup,
53 | ElPageHeader,
54 | ElPagination,
55 | ElPopconfirm,
56 | ElPopover,
57 | ElPopper,
58 | ElProgress,
59 | ElRadio,
60 | ElRadioButton,
61 | ElRadioGroup,
62 | ElRate,
63 | ElRow,
64 | ElScrollbar,
65 | ElSelect,
66 | ElSlider,
67 | ElStep,
68 | ElSteps,
69 | ElSubmenu,
70 | ElSwitch,
71 | ElTabPane,
72 | ElTable,
73 | ElTableColumn,
74 | ElTabs,
75 | ElTag,
76 | ElTimePicker,
77 | ElTimeSelect,
78 | ElTimeline,
79 | ElTimelineItem,
80 | ElTooltip,
81 | ElTransfer,
82 | ElTree,
83 | ElUpload,
84 | ElInfiniteScroll,
85 | ElLoading,
86 | ElMessage,
87 | ElMessageBox,
88 | ElNotification
89 | } from 'element-plus';
90 |
91 | const components: any[] = [
92 | ElAlert,
93 | ElAside,
94 | ElAutocomplete,
95 | ElAvatar,
96 | ElBacktop,
97 | ElBadge,
98 | ElBreadcrumb,
99 | ElBreadcrumbItem,
100 | ElButton,
101 | ElButtonGroup,
102 | ElCalendar,
103 | ElCard,
104 | ElCarousel,
105 | ElCarouselItem,
106 | ElCascader,
107 | ElCascaderPanel,
108 | ElCheckbox,
109 | ElCheckboxButton,
110 | ElCheckboxGroup,
111 | ElCol,
112 | ElCollapse,
113 | ElCollapseItem,
114 | ElCollapseTransition,
115 | ElColorPicker,
116 | ElContainer,
117 | ElDatePicker,
118 | ElDialog,
119 | ElDivider,
120 | ElDrawer,
121 | ElDropdown,
122 | ElDropdownItem,
123 | ElDropdownMenu,
124 | ElFooter,
125 | ElForm,
126 | ElFormItem,
127 | ElHeader,
128 | ElIcon,
129 | ElImage,
130 | ElInput,
131 | ElInputNumber,
132 | ElLink,
133 | ElMain,
134 | ElMenu,
135 | ElMenuItem,
136 | ElMenuItemGroup,
137 | ElOption,
138 | ElOptionGroup,
139 | ElPageHeader,
140 | ElPagination,
141 | ElPopconfirm,
142 | ElPopover,
143 | ElPopper,
144 | ElProgress,
145 | ElRadio,
146 | ElRadioButton,
147 | ElRadioGroup,
148 | ElRate,
149 | ElRow,
150 | ElScrollbar,
151 | ElSelect,
152 | ElSlider,
153 | ElStep,
154 | ElSteps,
155 | ElSubmenu,
156 | ElSwitch,
157 | ElTabPane,
158 | ElTable,
159 | ElTableColumn,
160 | ElTabs,
161 | ElTag,
162 | ElTimePicker,
163 | ElTimeSelect,
164 | ElTimeline,
165 | ElTimelineItem,
166 | ElTooltip,
167 | ElTransfer,
168 | ElTree,
169 | ElUpload
170 | ];
171 |
172 | const plugins: any[] = [
173 | ElLoading,
174 | ElMessage,
175 | ElMessageBox,
176 | ElNotification
177 | ];
178 |
179 | const element = (app: any): any => {
180 | // 国际化
181 | locale.use(lang);
182 | // 全局配置
183 | app.config.globalProperties.$ELEMENT = { size: 'small' };
184 |
185 | components.forEach(component => {
186 | app.component(component.name, component);
187 | });
188 |
189 | plugins.forEach(plugin => {
190 | app.use(plugin);
191 | });
192 | };
193 |
194 | export default element;
195 |
--------------------------------------------------------------------------------
/src/layout/components/TopBar.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | admin
13 |
14 |
15 |
16 | 个人信息
17 | 退出登录
18 |
19 |
20 |
21 |
22 |
23 |
28 |
29 |
30 | - 这是一条系统消息
31 | - 这是另一条系统消息
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
92 |
93 |
161 |
--------------------------------------------------------------------------------
/src/views/Table.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | 查询
15 |
16 |
17 |
18 |
25 |
26 | 日期
27 |
28 |
29 | {{scope.data.date}}自定义slot
30 |
31 |
32 | 编辑
33 |
34 | 删除
35 |
36 |
37 |
38 |
43 | 这是一段信息
44 |
45 |
49 |
50 |
51 |
52 |
53 |
54 |
182 |
183 |
186 |
--------------------------------------------------------------------------------
/src/assets/css/iconfont.less:
--------------------------------------------------------------------------------
1 | @font-face {font-family: "iconfont";
2 | src: url('../fonts/iconfont.eot?t=1610706940978'); /* IE9 */
3 | src: url('../fonts/iconfont.eot?t=1610706940978#iefix') format('embedded-opentype'), /* IE6-IE8 */
4 | url('data:application/x-font-woff2;charset=utf-8;base64,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') format('woff2'),
5 | url('../fonts/iconfont.woff?t=1610706940978') format('woff'),
6 | url('../fonts/iconfont.ttf?t=1610706940978') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
7 | url('../fonts/iconfont.svg?t=1610706940978#iconfont') format('svg'); /* iOS 4.1- */
8 | }
9 |
10 | // .iconfont {
11 | // font-family: "iconfont" !important;
12 | // font-size: 16px;
13 | // font-style: normal;
14 | // -webkit-font-smoothing: antialiased;
15 | // -moz-osx-font-smoothing: grayscale;
16 | // }
17 | [class^="hero-"], [class*=" hero-"] {
18 | /* use !important to prevent issues with browser extensions that change fonts */
19 | font-family: 'iconfont' !important;
20 | speak: none;
21 | font-style: normal;
22 | font-weight: normal;
23 | font-variant: normal;
24 | text-transform: none;
25 | line-height: 1;
26 |
27 | /* Better Font Rendering =========== */
28 | -webkit-font-smoothing: antialiased;
29 | -moz-osx-font-smoothing: grayscale;
30 | }
31 |
32 | .hero-full-screen:before {
33 | content: "\e671";
34 | }
35 |
36 | .hero-full-screen-zoom:before {
37 | content: "\e683";
38 | }
39 |
40 | .hero-auto:before {
41 | content: "\e6eb";
42 | }
43 |
44 | .hero-all:before {
45 | content: "\e6ef";
46 | }
47 |
48 | .hero-bussiness-man:before {
49 | content: "\e6f0";
50 | }
51 |
52 | .hero-component:before {
53 | content: "\e6f2";
54 | }
55 |
56 | .hero-code:before {
57 | content: "\e6f3";
58 | }
59 |
60 | .hero-copy:before {
61 | content: "\e6f4";
62 | }
63 |
64 | .hero-dollar:before {
65 | content: "\e6f5";
66 | }
67 |
68 | .hero-history:before {
69 | content: "\e6f8";
70 | }
71 |
72 | .hero-editor:before {
73 | content: "\e6f6";
74 | }
75 |
76 | .hero-data:before {
77 | content: "\e6f9";
78 | }
79 |
80 | .hero-gift:before {
81 | content: "\e6fa";
82 | }
83 |
84 | .hero-integral:before {
85 | content: "\e6fb";
86 | }
87 |
88 | .hero-nav-list:before {
89 | content: "\e6fd";
90 | }
91 |
92 | .hero-pic:before {
93 | content: "\e6ff";
94 | }
95 |
96 | .hero-Notvisible:before {
97 | content: "\e6fe";
98 | }
99 |
100 | .hero-play:before {
101 | content: "\e701";
102 | }
103 |
104 | .hero-rising:before {
105 | content: "\e703";
106 | }
107 |
108 | .hero-QRcode:before {
109 | content: "\e704";
110 | }
111 |
112 | .hero-similar-product:before {
113 | content: "\e707";
114 | }
115 |
116 | .hero-Exportservices:before {
117 | content: "\e702";
118 | }
119 |
120 | .hero-all-fill:before {
121 | content: "\e718";
122 | }
123 |
124 | .hero-favorites-fill:before {
125 | content: "\e721";
126 | }
127 |
128 | .hero-integral-fill:before {
129 | content: "\e726";
130 | }
131 |
132 | .hero-namecard-fill:before {
133 | content: "\e72a";
134 | }
135 |
136 | .hero-pic-fill:before {
137 | content: "\e72e";
138 | }
139 |
140 | .hero-play-fill:before {
141 | content: "\e72f";
142 | }
143 |
144 | .hero-prompt-fill:before {
145 | content: "\e730";
146 | }
147 |
148 | .hero-stop-fill:before {
149 | content: "\e738";
150 | }
151 |
152 | .hero-add:before {
153 | content: "\e742";
154 | }
155 |
156 | .hero-add-cart:before {
157 | content: "\e743";
158 | }
159 |
160 | .hero-arrow-right:before {
161 | content: "\e744";
162 | }
163 |
164 | .hero-arrow-left:before {
165 | content: "\e745";
166 | }
167 |
168 | .hero-all1:before {
169 | content: "\e746";
170 | }
171 |
172 | .hero-arrow-up:before {
173 | content: "\e747";
174 | }
175 |
176 | .hero-ashbin:before {
177 | content: "\e748";
178 | }
179 |
180 | .hero-bad:before {
181 | content: "\e749";
182 | }
183 |
184 | .hero-attachent:before {
185 | content: "\e74a";
186 | }
187 |
188 | .hero-browse:before {
189 | content: "\e74b";
190 | }
191 |
192 | .hero-calendar:before {
193 | content: "\e74c";
194 | }
195 |
196 | .hero-calculator:before {
197 | content: "\e74d";
198 | }
199 |
200 | .hero-category:before {
201 | content: "\e74e";
202 | }
203 |
204 | .hero-close:before {
205 | content: "\e74f";
206 | }
207 |
208 | .hero-cart-Empty:before {
209 | content: "\e750";
210 | }
211 |
212 | .hero-color:before {
213 | content: "\e751";
214 | }
215 |
216 | .hero-conditions:before {
217 | content: "\e752";
218 | }
219 |
220 | .hero-confirm:before {
221 | content: "\e753";
222 | }
223 |
224 | .hero-company:before {
225 | content: "\e754";
226 | }
227 |
228 | .hero-copy1:before {
229 | content: "\e755";
230 | }
231 |
232 | .hero-credit-level:before {
233 | content: "\e756";
234 | }
235 |
236 | .hero-coupons:before {
237 | content: "\e757";
238 | }
239 |
240 | .hero-connections:before {
241 | content: "\e758";
242 | }
243 |
244 | .hero-clock:before {
245 | content: "\e759";
246 | }
247 |
248 | .hero-cut:before {
249 | content: "\e75a";
250 | }
251 |
252 | .hero-descending:before {
253 | content: "\e75b";
254 | }
255 |
256 | .hero-double-arro-right:before {
257 | content: "\e75c";
258 | }
259 |
260 | .hero-double-arrow-left:before {
261 | content: "\e75d";
262 | }
263 |
264 | .hero-discount:before {
265 | content: "\e75e";
266 | }
267 |
268 | .hero-download:before {
269 | content: "\e75f";
270 | }
271 |
272 | .hero-etrical-equipm:before {
273 | content: "\e760";
274 | }
275 |
276 | .hero-email:before {
277 | content: "\e761";
278 | }
279 |
280 | .hero-falling:before {
281 | content: "\e762";
282 | }
283 |
284 | .hero-earth:before {
285 | content: "\e763";
286 | }
287 |
288 | .hero-folder:before {
289 | content: "\e764";
290 | }
291 |
292 | .hero-help:before {
293 | content: "\e765";
294 | }
295 |
296 | .hero-good:before {
297 | content: "\e766";
298 | }
299 |
300 | .hero-gift1:before {
301 | content: "\e767";
302 | }
303 |
304 | .hero-leftbutton:before {
305 | content: "\e768";
306 | }
307 |
308 | .hero-ipad:before {
309 | content: "\e769";
310 | }
311 |
312 | .hero-leftarrow:before {
313 | content: "\e76a";
314 | }
315 |
316 | .hero-link:before {
317 | content: "\e76b";
318 | }
319 |
320 | .hero-listing-content:before {
321 | content: "\e76c";
322 | }
323 |
324 | .hero-lights:before {
325 | content: "\e76d";
326 | }
327 |
328 | .hero-move:before {
329 | content: "\e76e";
330 | }
331 |
332 | .hero-namecard:before {
333 | content: "\e76f";
334 | }
335 |
336 | .hero-map:before {
337 | content: "\e770";
338 | }
339 |
340 | .hero-notice:before {
341 | content: "\e771";
342 | }
343 |
344 | .hero-Notvisible1:before {
345 | content: "\e772";
346 | }
347 |
348 | .hero-operation:before {
349 | content: "\e773";
350 | }
351 |
352 | .hero-product:before {
353 | content: "\e774";
354 | }
355 |
356 | .hero-reduce:before {
357 | content: "\e775";
358 | }
359 |
360 | .hero-return:before {
361 | content: "\e776";
362 | }
363 |
364 | .hero-Rightbutton:before {
365 | content: "\e777";
366 | }
367 |
368 | .hero-success:before {
369 | content: "\e778";
370 | }
371 |
372 | .hero-text:before {
373 | content: "\e779";
374 | }
375 |
376 | .hero-Top:before {
377 | content: "\e77a";
378 | }
379 |
380 | .hero-tradealert:before {
381 | content: "\e77b";
382 | }
383 |
384 | .hero-upload:before {
385 | content: "\e77c";
386 | }
387 |
388 | .hero-viewlarger:before {
389 | content: "\e77d";
390 | }
391 |
392 | .hero-set:before {
393 | content: "\e77e";
394 | }
395 |
396 | .hero-sport:before {
397 | content: "\e77f";
398 | }
399 |
400 | .hero-contacts:before {
401 | content: "\e780";
402 | }
403 |
404 | .hero-discounts:before {
405 | content: "\e781";
406 | }
407 |
408 | .hero-unlock:before {
409 | content: "\e782";
410 | }
411 |
412 | .hero-landtransportation:before {
413 | content: "\e783";
414 | }
415 |
416 | .hero-topraning:before {
417 | content: "\e7a0";
418 | }
419 |
420 | .hero-add-select:before {
421 | content: "\e7b0";
422 | }
423 |
424 | .hero-sami-select:before {
425 | content: "\e7b1";
426 | }
427 |
428 |
--------------------------------------------------------------------------------
/src/assets/fonts/iconfont.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
324 |
--------------------------------------------------------------------------------