完成基本架构
This commit is contained in:
		
							
								
								
									
										44
									
								
								code/web/task_schedule/.eslintrc.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										44
									
								
								code/web/task_schedule/.eslintrc.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,44 @@
 | 
				
			|||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * @Author: Kane
 | 
				
			||||||
 | 
					 * @Date: 2022-12-14 15:12:46
 | 
				
			||||||
 | 
					 * @LastEditors: Kane
 | 
				
			||||||
 | 
					 * @LastEditTime: 2023-02-06 00:36:26
 | 
				
			||||||
 | 
					 * @FilePath: /IT工具综合平台/.eslintrc.js
 | 
				
			||||||
 | 
					 * @Description: 
 | 
				
			||||||
 | 
					 * 
 | 
				
			||||||
 | 
					 * Copyright (c) ${2022} by Kane, All Rights Reserved. 
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					module.exports = {
 | 
				
			||||||
 | 
					  root: true,
 | 
				
			||||||
 | 
					  env: {
 | 
				
			||||||
 | 
					    node: true,
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
 | 
					  'extends': [
 | 
				
			||||||
 | 
					    'plugin:vue/vue3-essential',
 | 
				
			||||||
 | 
					    'eslint:recommended',
 | 
				
			||||||
 | 
					  ],
 | 
				
			||||||
 | 
					  parserOptions: {
 | 
				
			||||||
 | 
					    parser: '@babel/eslint-parser',
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
 | 
					  rules: {
 | 
				
			||||||
 | 
					    'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
 | 
				
			||||||
 | 
					    'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
 | 
				
			||||||
 | 
					    "no-unused-vars": "warn",
 | 
				
			||||||
 | 
					    "semi": ["error", "always",],//控制行尾部分号
 | 
				
			||||||
 | 
					    "comma-dangle": ["error", {
 | 
				
			||||||
 | 
					      "arrays": "always",
 | 
				
			||||||
 | 
					      "objects": "always",
 | 
				
			||||||
 | 
					      "imports": "never",
 | 
				
			||||||
 | 
					      "exports": "never",
 | 
				
			||||||
 | 
					      "functions": "never",
 | 
				
			||||||
 | 
					    },],//数组和对象键值对最后一个逗号
 | 
				
			||||||
 | 
					    "comma-style": ["error", "last",], //逗号在行位
 | 
				
			||||||
 | 
					    "array-bracket-spacing": ["error", "never",],
 | 
				
			||||||
 | 
					    "no-undef-init": "error",
 | 
				
			||||||
 | 
					    "no-invalid-this": "error",
 | 
				
			||||||
 | 
					    "no-use-before-define": "error",
 | 
				
			||||||
 | 
					    "no-shadow-restricted-names": "error", //禁止对一些关键字或者保留字进行赋值操作,比如NaN、Infinity、undefined、eval、arguments等
 | 
				
			||||||
 | 
					    // "comma-spacing": ["error", { "before": false, "after": true, },],
 | 
				
			||||||
 | 
					    "brace-style": ["error", "allman", { "allowSingleLine": true, },],
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
							
								
								
									
										24
									
								
								code/web/task_schedule/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								code/web/task_schedule/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,24 @@
 | 
				
			|||||||
 | 
					# Logs
 | 
				
			||||||
 | 
					logs
 | 
				
			||||||
 | 
					*.log
 | 
				
			||||||
 | 
					npm-debug.log*
 | 
				
			||||||
 | 
					yarn-debug.log*
 | 
				
			||||||
 | 
					yarn-error.log*
 | 
				
			||||||
 | 
					pnpm-debug.log*
 | 
				
			||||||
 | 
					lerna-debug.log*
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					node_modules
 | 
				
			||||||
 | 
					dist
 | 
				
			||||||
 | 
					dist-ssr
 | 
				
			||||||
 | 
					*.local
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Editor directories and files
 | 
				
			||||||
 | 
					.vscode/*
 | 
				
			||||||
 | 
					!.vscode/extensions.json
 | 
				
			||||||
 | 
					.idea
 | 
				
			||||||
 | 
					.DS_Store
 | 
				
			||||||
 | 
					*.suo
 | 
				
			||||||
 | 
					*.ntvs*
 | 
				
			||||||
 | 
					*.njsproj
 | 
				
			||||||
 | 
					*.sln
 | 
				
			||||||
 | 
					*.sw?
 | 
				
			||||||
							
								
								
									
										3
									
								
								code/web/task_schedule/.vscode/extensions.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								code/web/task_schedule/.vscode/extensions.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,3 @@
 | 
				
			|||||||
 | 
					{
 | 
				
			||||||
 | 
					  "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										7
									
								
								code/web/task_schedule/README.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								code/web/task_schedule/README.md
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,7 @@
 | 
				
			|||||||
 | 
					# Vue 3 + Vite
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## Recommended IDE Setup
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
 | 
				
			||||||
							
								
								
									
										13
									
								
								code/web/task_schedule/index.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								code/web/task_schedule/index.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,13 @@
 | 
				
			|||||||
 | 
					<!DOCTYPE html>
 | 
				
			||||||
 | 
					<html lang="en">
 | 
				
			||||||
 | 
					  <head>
 | 
				
			||||||
 | 
					    <meta charset="UTF-8" />
 | 
				
			||||||
 | 
					    <link rel="icon" type="image/svg+xml" href="/vite.svg" />
 | 
				
			||||||
 | 
					    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | 
				
			||||||
 | 
					    <title>Vite + Vue</title>
 | 
				
			||||||
 | 
					  </head>
 | 
				
			||||||
 | 
					  <body>
 | 
				
			||||||
 | 
					    <div id="app"></div>
 | 
				
			||||||
 | 
					    <script type="module" src="/src/main.js"></script>
 | 
				
			||||||
 | 
					  </body>
 | 
				
			||||||
 | 
					</html>
 | 
				
			||||||
							
								
								
									
										19
									
								
								code/web/task_schedule/jsconfig.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								code/web/task_schedule/jsconfig.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,19 @@
 | 
				
			|||||||
 | 
					{
 | 
				
			||||||
 | 
					  "compilerOptions": {
 | 
				
			||||||
 | 
					    "target": "es5",
 | 
				
			||||||
 | 
					    "module": "esnext",
 | 
				
			||||||
 | 
					    "baseUrl": "./",
 | 
				
			||||||
 | 
					    "moduleResolution": "node",
 | 
				
			||||||
 | 
					    "paths": {
 | 
				
			||||||
 | 
					      "@/*": [
 | 
				
			||||||
 | 
					        "src/*"
 | 
				
			||||||
 | 
					      ]
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "lib": [
 | 
				
			||||||
 | 
					      "esnext",
 | 
				
			||||||
 | 
					      "dom",
 | 
				
			||||||
 | 
					      "dom.iterable",
 | 
				
			||||||
 | 
					      "scripthost"
 | 
				
			||||||
 | 
					    ]
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										642
									
								
								code/web/task_schedule/package-lock.json
									
									
									
										generated
									
									
									
										Normal file
									
								
							
							
						
						
									
										642
									
								
								code/web/task_schedule/package-lock.json
									
									
									
										generated
									
									
									
										Normal file
									
								
							@@ -0,0 +1,642 @@
 | 
				
			|||||||
 | 
					{
 | 
				
			||||||
 | 
					  "name": "task_schedule",
 | 
				
			||||||
 | 
					  "version": "0.0.0",
 | 
				
			||||||
 | 
					  "lockfileVersion": 3,
 | 
				
			||||||
 | 
					  "requires": true,
 | 
				
			||||||
 | 
					  "packages": {
 | 
				
			||||||
 | 
					    "": {
 | 
				
			||||||
 | 
					      "name": "task_schedule",
 | 
				
			||||||
 | 
					      "version": "0.0.0",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "element-plus": "^2.2.30",
 | 
				
			||||||
 | 
					        "vue": "^3.2.45"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "devDependencies": {
 | 
				
			||||||
 | 
					        "@vitejs/plugin-vue": "^4.0.0",
 | 
				
			||||||
 | 
					        "vite": "^4.1.0"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@babel/parser": {
 | 
				
			||||||
 | 
					      "version": "7.20.15",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.20.15.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg==",
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "bin": {
 | 
				
			||||||
 | 
					        "parser": "bin/babel-parser.js"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "engines": {
 | 
				
			||||||
 | 
					        "node": ">=6.0.0"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@ctrl/tinycolor": {
 | 
				
			||||||
 | 
					      "version": "3.6.0",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.6.0.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-/Z3l6pXthq0JvMYdUFyX9j0MaCltlIn6mfh9jLyQwg5aPKxkyNa0PTHtU1AlFXLNk55ZuAeJRcpvq+tmLfKmaQ==",
 | 
				
			||||||
 | 
					      "engines": {
 | 
				
			||||||
 | 
					        "node": ">=10"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@element-plus/icons-vue": {
 | 
				
			||||||
 | 
					      "version": "2.0.10",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@element-plus/icons-vue/-/icons-vue-2.0.10.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-ygEZ1mwPjcPo/OulhzLE7mtDrQBWI8vZzEWSNB2W/RNCRjoQGwbaK4N8lV4rid7Ts4qvySU3njMN7YCiSlSaTQ==",
 | 
				
			||||||
 | 
					      "peerDependencies": {
 | 
				
			||||||
 | 
					        "vue": "^3.2.0"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@esbuild/win32-x64": {
 | 
				
			||||||
 | 
					      "version": "0.16.17",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==",
 | 
				
			||||||
 | 
					      "cpu": [
 | 
				
			||||||
 | 
					        "x64"
 | 
				
			||||||
 | 
					      ],
 | 
				
			||||||
 | 
					      "dev": true,
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "optional": true,
 | 
				
			||||||
 | 
					      "os": [
 | 
				
			||||||
 | 
					        "win32"
 | 
				
			||||||
 | 
					      ],
 | 
				
			||||||
 | 
					      "engines": {
 | 
				
			||||||
 | 
					        "node": ">=12"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@floating-ui/core": {
 | 
				
			||||||
 | 
					      "version": "1.2.1",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@floating-ui/core/-/core-1.2.1.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-LSqwPZkK3rYfD7GKoIeExXOyYx6Q1O4iqZWwIehDNuv3Dv425FIAE8PRwtAx1imEolFTHgBEcoFHm9MDnYgPCg=="
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@floating-ui/dom": {
 | 
				
			||||||
 | 
					      "version": "1.2.1",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@floating-ui/dom/-/dom-1.2.1.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-Rt45SmRiV8eU+xXSB9t0uMYiQ/ZWGE/jumse2o3i5RGlyvcbqOF4q+1qBnzLE2kZ5JGhq0iMkcGXUKbFe7MpTA==",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "@floating-ui/core": "^1.2.1"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@popperjs/core": {
 | 
				
			||||||
 | 
					      "name": "@sxzz/popperjs-es",
 | 
				
			||||||
 | 
					      "version": "2.11.7",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ=="
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@types/lodash": {
 | 
				
			||||||
 | 
					      "version": "4.14.191",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@types/lodash/-/lodash-4.14.191.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ=="
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@types/lodash-es": {
 | 
				
			||||||
 | 
					      "version": "4.17.6",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.6.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-R+zTeVUKDdfoRxpAryaQNRKk3105Rrgx2CFRClIgRGaqDTdjsm8h6IYA8ir584W3ePzkZfst5xIgDwYrlh9HLg==",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "@types/lodash": "*"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@types/web-bluetooth": {
 | 
				
			||||||
 | 
					      "version": "0.0.16",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ=="
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@vitejs/plugin-vue": {
 | 
				
			||||||
 | 
					      "version": "4.0.0",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-4.0.0.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-e0X4jErIxAB5oLtDqbHvHpJe/uWNkdpYV83AOG2xo2tEVSzCzewgJMtREZM30wXnM5ls90hxiOtAuVU6H5JgbA==",
 | 
				
			||||||
 | 
					      "dev": true,
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "engines": {
 | 
				
			||||||
 | 
					        "node": "^14.18.0 || >=16.0.0"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "peerDependencies": {
 | 
				
			||||||
 | 
					        "vite": "^4.0.0",
 | 
				
			||||||
 | 
					        "vue": "^3.2.25"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@vue/compiler-core": {
 | 
				
			||||||
 | 
					      "version": "3.2.47",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.2.47.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig==",
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "@babel/parser": "^7.16.4",
 | 
				
			||||||
 | 
					        "@vue/shared": "3.2.47",
 | 
				
			||||||
 | 
					        "estree-walker": "^2.0.2",
 | 
				
			||||||
 | 
					        "source-map": "^0.6.1"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@vue/compiler-dom": {
 | 
				
			||||||
 | 
					      "version": "3.2.47",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.2.47.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-dBBnEHEPoftUiS03a4ggEig74J2YBZ2UIeyfpcRM2tavgMWo4bsEfgCGsu+uJIL/vax9S+JztH8NmQerUo7shQ==",
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "@vue/compiler-core": "3.2.47",
 | 
				
			||||||
 | 
					        "@vue/shared": "3.2.47"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@vue/compiler-sfc": {
 | 
				
			||||||
 | 
					      "version": "3.2.47",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.2.47.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ==",
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "@babel/parser": "^7.16.4",
 | 
				
			||||||
 | 
					        "@vue/compiler-core": "3.2.47",
 | 
				
			||||||
 | 
					        "@vue/compiler-dom": "3.2.47",
 | 
				
			||||||
 | 
					        "@vue/compiler-ssr": "3.2.47",
 | 
				
			||||||
 | 
					        "@vue/reactivity-transform": "3.2.47",
 | 
				
			||||||
 | 
					        "@vue/shared": "3.2.47",
 | 
				
			||||||
 | 
					        "estree-walker": "^2.0.2",
 | 
				
			||||||
 | 
					        "magic-string": "^0.25.7",
 | 
				
			||||||
 | 
					        "postcss": "^8.1.10",
 | 
				
			||||||
 | 
					        "source-map": "^0.6.1"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@vue/compiler-ssr": {
 | 
				
			||||||
 | 
					      "version": "3.2.47",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.2.47.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-wVXC+gszhulcMD8wpxMsqSOpvDZ6xKXSVWkf50Guf/S+28hTAXPDYRTbLQ3EDkOP5Xz/+SY37YiwDquKbJOgZw==",
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "@vue/compiler-dom": "3.2.47",
 | 
				
			||||||
 | 
					        "@vue/shared": "3.2.47"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@vue/reactivity": {
 | 
				
			||||||
 | 
					      "version": "3.2.47",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.2.47.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-7khqQ/75oyyg+N/e+iwV6lpy1f5wq759NdlS1fpAhFXa8VeAIKGgk2E/C4VF59lx5b+Ezs5fpp/5WsRYXQiKxQ==",
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "@vue/shared": "3.2.47"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@vue/reactivity-transform": {
 | 
				
			||||||
 | 
					      "version": "3.2.47",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.2.47.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA==",
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "@babel/parser": "^7.16.4",
 | 
				
			||||||
 | 
					        "@vue/compiler-core": "3.2.47",
 | 
				
			||||||
 | 
					        "@vue/shared": "3.2.47",
 | 
				
			||||||
 | 
					        "estree-walker": "^2.0.2",
 | 
				
			||||||
 | 
					        "magic-string": "^0.25.7"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@vue/runtime-core": {
 | 
				
			||||||
 | 
					      "version": "3.2.47",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.2.47.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-RZxbLQIRB/K0ev0K9FXhNbBzT32H9iRtYbaXb0ZIz2usLms/D55dJR2t6cIEUn6vyhS3ALNvNthI+Q95C+NOpA==",
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "@vue/reactivity": "3.2.47",
 | 
				
			||||||
 | 
					        "@vue/shared": "3.2.47"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@vue/runtime-dom": {
 | 
				
			||||||
 | 
					      "version": "3.2.47",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.2.47.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-ArXrFTjS6TsDei4qwNvgrdmHtD930KgSKGhS5M+j8QxXrDJYLqYw4RRcDy1bz1m1wMmb6j+zGLifdVHtkXA7gA==",
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "@vue/runtime-core": "3.2.47",
 | 
				
			||||||
 | 
					        "@vue/shared": "3.2.47",
 | 
				
			||||||
 | 
					        "csstype": "^2.6.8"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@vue/server-renderer": {
 | 
				
			||||||
 | 
					      "version": "3.2.47",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.2.47.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-dN9gc1i8EvmP9RCzvneONXsKfBRgqFeFZLurmHOveL7oH6HiFXJw5OGu294n1nHc/HMgTy6LulU/tv5/A7f/LA==",
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "@vue/compiler-ssr": "3.2.47",
 | 
				
			||||||
 | 
					        "@vue/shared": "3.2.47"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "peerDependencies": {
 | 
				
			||||||
 | 
					        "vue": "3.2.47"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@vue/shared": {
 | 
				
			||||||
 | 
					      "version": "3.2.47",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.2.47.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==",
 | 
				
			||||||
 | 
					      "license": "MIT"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@vueuse/core": {
 | 
				
			||||||
 | 
					      "version": "9.12.0",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-9.12.0.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-h/Di8Bvf6xRcvS/PvUVheiMYYz3U0tH3X25YxONSaAUBa841ayMwxkuzx/DGUMCW/wHWzD8tRy2zYmOC36r4sg==",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "@types/web-bluetooth": "^0.0.16",
 | 
				
			||||||
 | 
					        "@vueuse/metadata": "9.12.0",
 | 
				
			||||||
 | 
					        "@vueuse/shared": "9.12.0",
 | 
				
			||||||
 | 
					        "vue-demi": "*"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@vueuse/core/node_modules/vue-demi": {
 | 
				
			||||||
 | 
					      "version": "0.13.11",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.13.11.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==",
 | 
				
			||||||
 | 
					      "hasInstallScript": true,
 | 
				
			||||||
 | 
					      "bin": {
 | 
				
			||||||
 | 
					        "vue-demi-fix": "bin/vue-demi-fix.js",
 | 
				
			||||||
 | 
					        "vue-demi-switch": "bin/vue-demi-switch.js"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "engines": {
 | 
				
			||||||
 | 
					        "node": ">=12"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "peerDependencies": {
 | 
				
			||||||
 | 
					        "@vue/composition-api": "^1.0.0-rc.1",
 | 
				
			||||||
 | 
					        "vue": "^3.0.0-0 || ^2.6.0"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "peerDependenciesMeta": {
 | 
				
			||||||
 | 
					        "@vue/composition-api": {
 | 
				
			||||||
 | 
					          "optional": true
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@vueuse/metadata": {
 | 
				
			||||||
 | 
					      "version": "9.12.0",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-9.12.0.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-9oJ9MM9lFLlmvxXUqsR1wLt1uF7EVbP5iYaHJYqk+G2PbMjY6EXvZeTjbdO89HgoF5cI6z49o2zT/jD9SVoNpQ=="
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@vueuse/shared": {
 | 
				
			||||||
 | 
					      "version": "9.12.0",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-9.12.0.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-TWuJLACQ0BVithVTRbex4Wf1a1VaRuSpVeyEd4vMUWl54PzlE0ciFUshKCXnlLuD0lxIaLK4Ypj3NXYzZh4+SQ==",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "vue-demi": "*"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/@vueuse/shared/node_modules/vue-demi": {
 | 
				
			||||||
 | 
					      "version": "0.13.11",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.13.11.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==",
 | 
				
			||||||
 | 
					      "hasInstallScript": true,
 | 
				
			||||||
 | 
					      "bin": {
 | 
				
			||||||
 | 
					        "vue-demi-fix": "bin/vue-demi-fix.js",
 | 
				
			||||||
 | 
					        "vue-demi-switch": "bin/vue-demi-switch.js"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "engines": {
 | 
				
			||||||
 | 
					        "node": ">=12"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "peerDependencies": {
 | 
				
			||||||
 | 
					        "@vue/composition-api": "^1.0.0-rc.1",
 | 
				
			||||||
 | 
					        "vue": "^3.0.0-0 || ^2.6.0"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "peerDependenciesMeta": {
 | 
				
			||||||
 | 
					        "@vue/composition-api": {
 | 
				
			||||||
 | 
					          "optional": true
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/async-validator": {
 | 
				
			||||||
 | 
					      "version": "4.2.5",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg=="
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/csstype": {
 | 
				
			||||||
 | 
					      "version": "2.6.21",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/csstype/-/csstype-2.6.21.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==",
 | 
				
			||||||
 | 
					      "license": "MIT"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/dayjs": {
 | 
				
			||||||
 | 
					      "version": "1.11.7",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.7.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ=="
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/element-plus": {
 | 
				
			||||||
 | 
					      "version": "2.2.30",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/element-plus/-/element-plus-2.2.30.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-HYSnmf2VMGa0gmw03evxevodPy3WimbAd4sfenOAhNs7Wl8IdT+YJjQyGAQjgEjRvhmujN4O/CZqhuEffRyOZg==",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "@ctrl/tinycolor": "^3.4.1",
 | 
				
			||||||
 | 
					        "@element-plus/icons-vue": "^2.0.6",
 | 
				
			||||||
 | 
					        "@floating-ui/dom": "^1.0.1",
 | 
				
			||||||
 | 
					        "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7",
 | 
				
			||||||
 | 
					        "@types/lodash": "^4.14.182",
 | 
				
			||||||
 | 
					        "@types/lodash-es": "^4.17.6",
 | 
				
			||||||
 | 
					        "@vueuse/core": "^9.1.0",
 | 
				
			||||||
 | 
					        "async-validator": "^4.2.5",
 | 
				
			||||||
 | 
					        "dayjs": "^1.11.3",
 | 
				
			||||||
 | 
					        "escape-html": "^1.0.3",
 | 
				
			||||||
 | 
					        "lodash": "^4.17.21",
 | 
				
			||||||
 | 
					        "lodash-es": "^4.17.21",
 | 
				
			||||||
 | 
					        "lodash-unified": "^1.0.2",
 | 
				
			||||||
 | 
					        "memoize-one": "^6.0.0",
 | 
				
			||||||
 | 
					        "normalize-wheel-es": "^1.2.0"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "peerDependencies": {
 | 
				
			||||||
 | 
					        "vue": "^3.2.0"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/esbuild": {
 | 
				
			||||||
 | 
					      "version": "0.16.17",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.16.17.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==",
 | 
				
			||||||
 | 
					      "dev": true,
 | 
				
			||||||
 | 
					      "hasInstallScript": true,
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "bin": {
 | 
				
			||||||
 | 
					        "esbuild": "bin/esbuild"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "engines": {
 | 
				
			||||||
 | 
					        "node": ">=12"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "optionalDependencies": {
 | 
				
			||||||
 | 
					        "@esbuild/android-arm": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/android-arm64": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/android-x64": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/darwin-arm64": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/darwin-x64": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/freebsd-arm64": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/freebsd-x64": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/linux-arm": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/linux-arm64": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/linux-ia32": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/linux-loong64": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/linux-mips64el": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/linux-ppc64": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/linux-riscv64": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/linux-s390x": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/linux-x64": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/netbsd-x64": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/openbsd-x64": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/sunos-x64": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/win32-arm64": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/win32-ia32": "0.16.17",
 | 
				
			||||||
 | 
					        "@esbuild/win32-x64": "0.16.17"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/escape-html": {
 | 
				
			||||||
 | 
					      "version": "1.0.3",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/estree-walker": {
 | 
				
			||||||
 | 
					      "version": "2.0.2",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
 | 
				
			||||||
 | 
					      "license": "MIT"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/function-bind": {
 | 
				
			||||||
 | 
					      "version": "1.1.1",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
 | 
				
			||||||
 | 
					      "dev": true,
 | 
				
			||||||
 | 
					      "license": "MIT"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/has": {
 | 
				
			||||||
 | 
					      "version": "1.0.3",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/has/-/has-1.0.3.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
 | 
				
			||||||
 | 
					      "dev": true,
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "function-bind": "^1.1.1"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "engines": {
 | 
				
			||||||
 | 
					        "node": ">= 0.4.0"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/is-core-module": {
 | 
				
			||||||
 | 
					      "version": "2.11.0",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.11.0.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==",
 | 
				
			||||||
 | 
					      "dev": true,
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "has": "^1.0.3"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "funding": {
 | 
				
			||||||
 | 
					        "url": "https://github.com/sponsors/ljharb"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/lodash": {
 | 
				
			||||||
 | 
					      "version": "4.17.21",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/lodash-es": {
 | 
				
			||||||
 | 
					      "version": "4.17.21",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw=="
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/lodash-unified": {
 | 
				
			||||||
 | 
					      "version": "1.0.3",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/lodash-unified/-/lodash-unified-1.0.3.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==",
 | 
				
			||||||
 | 
					      "peerDependencies": {
 | 
				
			||||||
 | 
					        "@types/lodash-es": "*",
 | 
				
			||||||
 | 
					        "lodash": "*",
 | 
				
			||||||
 | 
					        "lodash-es": "*"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/magic-string": {
 | 
				
			||||||
 | 
					      "version": "0.25.9",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.25.9.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==",
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "sourcemap-codec": "^1.4.8"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/memoize-one": {
 | 
				
			||||||
 | 
					      "version": "6.0.0",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/memoize-one/-/memoize-one-6.0.0.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw=="
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/nanoid": {
 | 
				
			||||||
 | 
					      "version": "3.3.4",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.4.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==",
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "bin": {
 | 
				
			||||||
 | 
					        "nanoid": "bin/nanoid.cjs"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "engines": {
 | 
				
			||||||
 | 
					        "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/normalize-wheel-es": {
 | 
				
			||||||
 | 
					      "version": "1.2.0",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw=="
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/path-parse": {
 | 
				
			||||||
 | 
					      "version": "1.0.7",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
 | 
				
			||||||
 | 
					      "dev": true,
 | 
				
			||||||
 | 
					      "license": "MIT"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/picocolors": {
 | 
				
			||||||
 | 
					      "version": "1.0.0",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==",
 | 
				
			||||||
 | 
					      "license": "ISC"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/postcss": {
 | 
				
			||||||
 | 
					      "version": "8.4.21",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.4.21.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==",
 | 
				
			||||||
 | 
					      "funding": [
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					          "type": "opencollective",
 | 
				
			||||||
 | 
					          "url": "https://opencollective.com/postcss/"
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					          "type": "tidelift",
 | 
				
			||||||
 | 
					          "url": "https://tidelift.com/funding/github/npm/postcss"
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					      ],
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "nanoid": "^3.3.4",
 | 
				
			||||||
 | 
					        "picocolors": "^1.0.0",
 | 
				
			||||||
 | 
					        "source-map-js": "^1.0.2"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "engines": {
 | 
				
			||||||
 | 
					        "node": "^10 || ^12 || >=14"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/resolve": {
 | 
				
			||||||
 | 
					      "version": "1.22.1",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/resolve/-/resolve-1.22.1.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==",
 | 
				
			||||||
 | 
					      "dev": true,
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "is-core-module": "^2.9.0",
 | 
				
			||||||
 | 
					        "path-parse": "^1.0.7",
 | 
				
			||||||
 | 
					        "supports-preserve-symlinks-flag": "^1.0.0"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "bin": {
 | 
				
			||||||
 | 
					        "resolve": "bin/resolve"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "funding": {
 | 
				
			||||||
 | 
					        "url": "https://github.com/sponsors/ljharb"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/rollup": {
 | 
				
			||||||
 | 
					      "version": "3.15.0",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/rollup/-/rollup-3.15.0.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-F9hrCAhnp5/zx/7HYmftvsNBkMfLfk/dXUh73hPSM2E3CRgap65orDNJbLetoiUFwSAk6iHPLvBrZ5iHYvzqsg==",
 | 
				
			||||||
 | 
					      "dev": true,
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "bin": {
 | 
				
			||||||
 | 
					        "rollup": "dist/bin/rollup"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "engines": {
 | 
				
			||||||
 | 
					        "node": ">=14.18.0",
 | 
				
			||||||
 | 
					        "npm": ">=8.0.0"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "optionalDependencies": {
 | 
				
			||||||
 | 
					        "fsevents": "~2.3.2"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/source-map": {
 | 
				
			||||||
 | 
					      "version": "0.6.1",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 | 
				
			||||||
 | 
					      "license": "BSD-3-Clause",
 | 
				
			||||||
 | 
					      "engines": {
 | 
				
			||||||
 | 
					        "node": ">=0.10.0"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/source-map-js": {
 | 
				
			||||||
 | 
					      "version": "1.0.2",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
 | 
				
			||||||
 | 
					      "license": "BSD-3-Clause",
 | 
				
			||||||
 | 
					      "engines": {
 | 
				
			||||||
 | 
					        "node": ">=0.10.0"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/sourcemap-codec": {
 | 
				
			||||||
 | 
					      "version": "1.4.8",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==",
 | 
				
			||||||
 | 
					      "license": "MIT"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/supports-preserve-symlinks-flag": {
 | 
				
			||||||
 | 
					      "version": "1.0.0",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
 | 
				
			||||||
 | 
					      "dev": true,
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "engines": {
 | 
				
			||||||
 | 
					        "node": ">= 0.4"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "funding": {
 | 
				
			||||||
 | 
					        "url": "https://github.com/sponsors/ljharb"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/vite": {
 | 
				
			||||||
 | 
					      "version": "4.1.1",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/vite/-/vite-4.1.1.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-LM9WWea8vsxhr782r9ntg+bhSFS06FJgCvvB0+8hf8UWtvaiDagKYWXndjfX6kGl74keHJUcpzrQliDXZlF5yg==",
 | 
				
			||||||
 | 
					      "dev": true,
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "esbuild": "^0.16.14",
 | 
				
			||||||
 | 
					        "postcss": "^8.4.21",
 | 
				
			||||||
 | 
					        "resolve": "^1.22.1",
 | 
				
			||||||
 | 
					        "rollup": "^3.10.0"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "bin": {
 | 
				
			||||||
 | 
					        "vite": "bin/vite.js"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "engines": {
 | 
				
			||||||
 | 
					        "node": "^14.18.0 || >=16.0.0"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "optionalDependencies": {
 | 
				
			||||||
 | 
					        "fsevents": "~2.3.2"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "peerDependencies": {
 | 
				
			||||||
 | 
					        "@types/node": ">= 14",
 | 
				
			||||||
 | 
					        "less": "*",
 | 
				
			||||||
 | 
					        "sass": "*",
 | 
				
			||||||
 | 
					        "stylus": "*",
 | 
				
			||||||
 | 
					        "sugarss": "*",
 | 
				
			||||||
 | 
					        "terser": "^5.4.0"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "peerDependenciesMeta": {
 | 
				
			||||||
 | 
					        "@types/node": {
 | 
				
			||||||
 | 
					          "optional": true
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        "less": {
 | 
				
			||||||
 | 
					          "optional": true
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        "sass": {
 | 
				
			||||||
 | 
					          "optional": true
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        "stylus": {
 | 
				
			||||||
 | 
					          "optional": true
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        "sugarss": {
 | 
				
			||||||
 | 
					          "optional": true
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        "terser": {
 | 
				
			||||||
 | 
					          "optional": true
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/vue": {
 | 
				
			||||||
 | 
					      "version": "3.2.47",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmmirror.com/vue/-/vue-3.2.47.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-60188y/9Dc9WVrAZeUVSDxRQOZ+z+y5nO2ts9jWXSTkMvayiWxCWOWtBQoYjLeccfXkiiPZWAHcV+WTPhkqJHQ==",
 | 
				
			||||||
 | 
					      "license": "MIT",
 | 
				
			||||||
 | 
					      "dependencies": {
 | 
				
			||||||
 | 
					        "@vue/compiler-dom": "3.2.47",
 | 
				
			||||||
 | 
					        "@vue/compiler-sfc": "3.2.47",
 | 
				
			||||||
 | 
					        "@vue/runtime-dom": "3.2.47",
 | 
				
			||||||
 | 
					        "@vue/server-renderer": "3.2.47",
 | 
				
			||||||
 | 
					        "@vue/shared": "3.2.47"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										19
									
								
								code/web/task_schedule/package.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								code/web/task_schedule/package.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,19 @@
 | 
				
			|||||||
 | 
					{
 | 
				
			||||||
 | 
					  "name": "task_schedule",
 | 
				
			||||||
 | 
					  "private": true,
 | 
				
			||||||
 | 
					  "version": "0.0.0",
 | 
				
			||||||
 | 
					  "type": "module",
 | 
				
			||||||
 | 
					  "scripts": {
 | 
				
			||||||
 | 
					    "dev": "vite",
 | 
				
			||||||
 | 
					    "build": "vite build",
 | 
				
			||||||
 | 
					    "preview": "vite preview"
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
 | 
					  "dependencies": {
 | 
				
			||||||
 | 
					    "element-plus": "^2.2.30",
 | 
				
			||||||
 | 
					    "vue": "^3.2.45"
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
 | 
					  "devDependencies": {
 | 
				
			||||||
 | 
					    "@vitejs/plugin-vue": "^4.0.0",
 | 
				
			||||||
 | 
					    "vite": "^4.1.0"
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										1
									
								
								code/web/task_schedule/public/vite.svg
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								code/web/task_schedule/public/vite.svg
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
				
			|||||||
 | 
					<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.5 KiB  | 
							
								
								
									
										57
									
								
								code/web/task_schedule/src/App copy.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										57
									
								
								code/web/task_schedule/src/App copy.vue
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,57 @@
 | 
				
			|||||||
 | 
					<!--
 | 
				
			||||||
 | 
					 * @Author: Kane
 | 
				
			||||||
 | 
					 * @Date: 2023-02-15 09:25:52
 | 
				
			||||||
 | 
					 * @LastEditors: Kane
 | 
				
			||||||
 | 
					 * @LastEditTime: 2023-02-15 09:49:23
 | 
				
			||||||
 | 
					 * @FilePath: /task_schedule/src/App.vue
 | 
				
			||||||
 | 
					 * @Description: 
 | 
				
			||||||
 | 
					 * 
 | 
				
			||||||
 | 
					 * Copyright (c) ${2022} by Kane, All Rights Reserved. 
 | 
				
			||||||
 | 
					-->
 | 
				
			||||||
 | 
					<template>
 | 
				
			||||||
 | 
					  <el-config-provider :locale="this.locale">
 | 
				
			||||||
 | 
					    <div>
 | 
				
			||||||
 | 
					      <a href="https://vitejs.dev" target="_blank">
 | 
				
			||||||
 | 
					        <img src="/vite.svg" class="logo" alt="Vite logo" />
 | 
				
			||||||
 | 
					      </a>
 | 
				
			||||||
 | 
					      <a href="https://vuejs.org/" target="_blank">
 | 
				
			||||||
 | 
					        <img src="./assets/vue.svg" class="logo vue" alt="Vue logo" />
 | 
				
			||||||
 | 
					      </a>
 | 
				
			||||||
 | 
					    </div>
 | 
				
			||||||
 | 
					    <HelloWorld msg="Vite + Vue" />
 | 
				
			||||||
 | 
					  </el-config-provider>
 | 
				
			||||||
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<script>
 | 
				
			||||||
 | 
					import HelloWorld from "./components/HelloWorld.vue";
 | 
				
			||||||
 | 
					import zhCn from "element-plus/lib/locale/lang/zh-cn"; //element-plus语言组件
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					export default {
 | 
				
			||||||
 | 
					  name: "App",
 | 
				
			||||||
 | 
					  components: { HelloWorld },
 | 
				
			||||||
 | 
					  setup(props)
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    const locale = zhCn;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    return { locale, };
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					</script>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<style scoped>
 | 
				
			||||||
 | 
					.logo {
 | 
				
			||||||
 | 
					  height: 6em;
 | 
				
			||||||
 | 
					  padding: 1.5em;
 | 
				
			||||||
 | 
					  will-change: filter;
 | 
				
			||||||
 | 
					  transition: filter 300ms;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.logo:hover {
 | 
				
			||||||
 | 
					  filter: drop-shadow(0 0 2em #646cffaa);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.logo.vue:hover {
 | 
				
			||||||
 | 
					  filter: drop-shadow(0 0 2em #42b883aa);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					</style>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										84
									
								
								code/web/task_schedule/src/App.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										84
									
								
								code/web/task_schedule/src/App.vue
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,84 @@
 | 
				
			|||||||
 | 
					<!--
 | 
				
			||||||
 | 
					 * @Author: Kane
 | 
				
			||||||
 | 
					 * @Date: 2023-02-15 09:25:52
 | 
				
			||||||
 | 
					 * @LastEditors: Kane
 | 
				
			||||||
 | 
					 * @LastEditTime: 2023-02-15 11:30:04
 | 
				
			||||||
 | 
					 * @FilePath: /task_schedule/src/App.vue
 | 
				
			||||||
 | 
					 * @Description: 
 | 
				
			||||||
 | 
					 * 
 | 
				
			||||||
 | 
					 * Copyright (c) ${2022} by Kane, All Rights Reserved. 
 | 
				
			||||||
 | 
					-->
 | 
				
			||||||
 | 
					<template>
 | 
				
			||||||
 | 
					  <el-config-provider :locale="this.locale">
 | 
				
			||||||
 | 
					    <div class="app_wrapper">
 | 
				
			||||||
 | 
					      <div class="counter_wrapper">
 | 
				
			||||||
 | 
					        <span>s{{ ui.counter }}</span>
 | 
				
			||||||
 | 
					        <!-- <el-button type="danger" @click="onCount">点击</el-button> -->
 | 
				
			||||||
 | 
					      </div>
 | 
				
			||||||
 | 
					    </div>
 | 
				
			||||||
 | 
					  </el-config-provider>
 | 
				
			||||||
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<script>
 | 
				
			||||||
 | 
					import HelloWorld from "./components/HelloWorld.vue";
 | 
				
			||||||
 | 
					import zhCn from "element-plus/lib/locale/lang/zh-cn"; //element-plus语言组件
 | 
				
			||||||
 | 
					import { reactive } from "vue";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					export default {
 | 
				
			||||||
 | 
					  name: "App",
 | 
				
			||||||
 | 
					  components: { HelloWorld },
 | 
				
			||||||
 | 
					  setup(props)
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    const locale = zhCn;
 | 
				
			||||||
 | 
					    const ui = reactive({
 | 
				
			||||||
 | 
					      counter: 0,
 | 
				
			||||||
 | 
					    });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    const onCount = () =>
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					      ui.counter++;
 | 
				
			||||||
 | 
					      console.log(ui.counter);
 | 
				
			||||||
 | 
					    };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    setInterval(() =>
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					      ui.counter += 1;
 | 
				
			||||||
 | 
					      // console.log(counter);
 | 
				
			||||||
 | 
					    }, 1000);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    setInterval(() =>
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					      location.reload();
 | 
				
			||||||
 | 
					    }, 60000);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    return { locale, ui, onCount };
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					</script>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<style scoped>
 | 
				
			||||||
 | 
					.app_wrapper {
 | 
				
			||||||
 | 
					  box-sizing: border-box;
 | 
				
			||||||
 | 
					  width: 100%;
 | 
				
			||||||
 | 
					  height: calc(100vh - 60px);
 | 
				
			||||||
 | 
					  /* border: 1px solid brown; */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /* 布局 */
 | 
				
			||||||
 | 
					  display: flex;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.counter_wrapper {
 | 
				
			||||||
 | 
					  width: 300px;
 | 
				
			||||||
 | 
					  margin-left: auto;
 | 
				
			||||||
 | 
					  margin-right: 20px;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.counter_wrapper:hover {
 | 
				
			||||||
 | 
					  box-shadow: 0px 0px 20px 10px rgb(14 18 22 / 10%);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.counter_wrapper span {
 | 
				
			||||||
 | 
					  font-size: 150px;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					</style>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										1
									
								
								code/web/task_schedule/src/assets/vue.svg
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								code/web/task_schedule/src/assets/vue.svg
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
				
			|||||||
 | 
					<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="37.07" height="36" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 198"><path fill="#41B883" d="M204.8 0H256L128 220.8L0 0h97.92L128 51.2L157.44 0h47.36Z"></path><path fill="#41B883" d="m0 0l128 220.8L256 0h-51.2L128 132.48L50.56 0H0Z"></path><path fill="#35495E" d="M50.56 0L128 133.12L204.8 0h-47.36L128 51.2L97.92 0H50.56Z"></path></svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 496 B  | 
							
								
								
									
										40
									
								
								code/web/task_schedule/src/components/HelloWorld.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										40
									
								
								code/web/task_schedule/src/components/HelloWorld.vue
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,40 @@
 | 
				
			|||||||
 | 
					<script setup>
 | 
				
			||||||
 | 
					import { ref } from 'vue'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					defineProps({
 | 
				
			||||||
 | 
					  msg: String,
 | 
				
			||||||
 | 
					})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					const count = ref(0)
 | 
				
			||||||
 | 
					</script>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<template>
 | 
				
			||||||
 | 
					  <h1>{{ msg }}</h1>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <div class="card">
 | 
				
			||||||
 | 
					    <button type="button" @click="count++">count is {{ count }}</button>
 | 
				
			||||||
 | 
					    <p>
 | 
				
			||||||
 | 
					      Edit
 | 
				
			||||||
 | 
					      <code>components/HelloWorld.vue</code> to test HMR
 | 
				
			||||||
 | 
					    </p>
 | 
				
			||||||
 | 
					  </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <p>
 | 
				
			||||||
 | 
					    Check out
 | 
				
			||||||
 | 
					    <a href="https://vuejs.org/guide/quick-start.html#local" target="_blank"
 | 
				
			||||||
 | 
					      >create-vue</a
 | 
				
			||||||
 | 
					    >, the official Vue + Vite starter
 | 
				
			||||||
 | 
					  </p>
 | 
				
			||||||
 | 
					  <p>
 | 
				
			||||||
 | 
					    Install
 | 
				
			||||||
 | 
					    <a href="https://github.com/johnsoncodehk/volar" target="_blank">Volar</a>
 | 
				
			||||||
 | 
					    in your IDE for a better DX
 | 
				
			||||||
 | 
					  </p>
 | 
				
			||||||
 | 
					  <p class="read-the-docs">Click on the Vite and Vue logos to learn more</p>
 | 
				
			||||||
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<style scoped>
 | 
				
			||||||
 | 
					.read-the-docs {
 | 
				
			||||||
 | 
					  color: #888;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					</style>
 | 
				
			||||||
							
								
								
									
										31
									
								
								code/web/task_schedule/src/main.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								code/web/task_schedule/src/main.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,31 @@
 | 
				
			|||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * @Author: Kane
 | 
				
			||||||
 | 
					 * @Date: 2023-02-15 09:25:52
 | 
				
			||||||
 | 
					 * @LastEditors: Kane
 | 
				
			||||||
 | 
					 * @LastEditTime: 2023-02-15 09:57:26
 | 
				
			||||||
 | 
					 * @FilePath: /task_schedule/src/main.js
 | 
				
			||||||
 | 
					 * @Description: 
 | 
				
			||||||
 | 
					 * 
 | 
				
			||||||
 | 
					 * Copyright (c) ${2022} by Kane, All Rights Reserved. 
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					import { createApp } from 'vue'
 | 
				
			||||||
 | 
					import './style.css'
 | 
				
			||||||
 | 
					import App from './App.vue'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					//css
 | 
				
			||||||
 | 
					import("element-plus/dist/index.css");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					//element-plus
 | 
				
			||||||
 | 
					import ElementPlus from "element-plus";
 | 
				
			||||||
 | 
					import * as ElementPlusIconsVue from "@element-plus/icons-vue";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					const app = createApp(App);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					//注册element-plus的图标
 | 
				
			||||||
 | 
					for (const [key, component,] of Object.entries(ElementPlusIconsVue))
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					    app.component(key, component);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					app.use(ElementPlus);
 | 
				
			||||||
 | 
					app.mount('#app');
 | 
				
			||||||
							
								
								
									
										89
									
								
								code/web/task_schedule/src/style copy.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										89
									
								
								code/web/task_schedule/src/style copy.css
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,89 @@
 | 
				
			|||||||
 | 
					:root {
 | 
				
			||||||
 | 
					  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
 | 
				
			||||||
 | 
					  line-height: 1.5;
 | 
				
			||||||
 | 
					  font-weight: 400;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  color-scheme: light dark;
 | 
				
			||||||
 | 
					  color: rgba(255, 255, 255, 0.87);
 | 
				
			||||||
 | 
					  background-color: #242424;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  font-synthesis: none;
 | 
				
			||||||
 | 
					  text-rendering: optimizeLegibility;
 | 
				
			||||||
 | 
					  -webkit-font-smoothing: antialiased;
 | 
				
			||||||
 | 
					  -moz-osx-font-smoothing: grayscale;
 | 
				
			||||||
 | 
					  -webkit-text-size-adjust: 100%;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					a {
 | 
				
			||||||
 | 
					  font-weight: 500;
 | 
				
			||||||
 | 
					  color: #646cff;
 | 
				
			||||||
 | 
					  text-decoration: inherit;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					a:hover {
 | 
				
			||||||
 | 
					  color: #535bf2;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					a {
 | 
				
			||||||
 | 
					  font-weight: 500;
 | 
				
			||||||
 | 
					  color: #646cff;
 | 
				
			||||||
 | 
					  text-decoration: inherit;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					a:hover {
 | 
				
			||||||
 | 
					  color: #535bf2;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					body {
 | 
				
			||||||
 | 
					  margin: 0;
 | 
				
			||||||
 | 
					  display: flex;
 | 
				
			||||||
 | 
					  place-items: center;
 | 
				
			||||||
 | 
					  min-width: 320px;
 | 
				
			||||||
 | 
					  min-height: 100vh;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					h1 {
 | 
				
			||||||
 | 
					  font-size: 3.2em;
 | 
				
			||||||
 | 
					  line-height: 1.1;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					button {
 | 
				
			||||||
 | 
					  border-radius: 8px;
 | 
				
			||||||
 | 
					  border: 1px solid transparent;
 | 
				
			||||||
 | 
					  padding: 0.6em 1.2em;
 | 
				
			||||||
 | 
					  font-size: 1em;
 | 
				
			||||||
 | 
					  font-weight: 500;
 | 
				
			||||||
 | 
					  font-family: inherit;
 | 
				
			||||||
 | 
					  background-color: #1a1a1a;
 | 
				
			||||||
 | 
					  cursor: pointer;
 | 
				
			||||||
 | 
					  transition: border-color 0.25s;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					button:hover {
 | 
				
			||||||
 | 
					  border-color: #646cff;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					button:focus,
 | 
				
			||||||
 | 
					button:focus-visible {
 | 
				
			||||||
 | 
					  outline: 4px auto -webkit-focus-ring-color;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.card {
 | 
				
			||||||
 | 
					  padding: 2em;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#app {
 | 
				
			||||||
 | 
					  max-width: 1280px;
 | 
				
			||||||
 | 
					  margin: 0 auto;
 | 
				
			||||||
 | 
					  padding: 2rem;
 | 
				
			||||||
 | 
					  text-align: center;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					@media (prefers-color-scheme: light) {
 | 
				
			||||||
 | 
					  :root {
 | 
				
			||||||
 | 
					    color: #213547;
 | 
				
			||||||
 | 
					    background-color: #ffffff;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  a:hover {
 | 
				
			||||||
 | 
					    color: #747bff;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  button {
 | 
				
			||||||
 | 
					    background-color: #f9f9f9;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										11
									
								
								code/web/task_schedule/src/style.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								code/web/task_schedule/src/style.css
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,11 @@
 | 
				
			|||||||
 | 
					html {
 | 
				
			||||||
 | 
					    background-color: #8796a6;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					body {
 | 
				
			||||||
 | 
					    background-color: #8796a6;
 | 
				
			||||||
 | 
					    width: calc(100vw - 20px);
 | 
				
			||||||
 | 
					    height: calc(100vh - 60px);
 | 
				
			||||||
 | 
					    /* border: 1px solid red; */
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										18
									
								
								code/web/task_schedule/vite.config.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								code/web/task_schedule/vite.config.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,18 @@
 | 
				
			|||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * @Author: Kane
 | 
				
			||||||
 | 
					 * @Date: 2023-02-15 09:25:52
 | 
				
			||||||
 | 
					 * @LastEditors: Kane
 | 
				
			||||||
 | 
					 * @LastEditTime: 2023-02-15 10:40:43
 | 
				
			||||||
 | 
					 * @FilePath: /task_schedule/vite.config.js
 | 
				
			||||||
 | 
					 * @Description: 
 | 
				
			||||||
 | 
					 * 
 | 
				
			||||||
 | 
					 * Copyright (c) ${2022} by Kane, All Rights Reserved. 
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					import { defineConfig } from 'vite'
 | 
				
			||||||
 | 
					import vue from '@vitejs/plugin-vue'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// https://vitejs.dev/config/
 | 
				
			||||||
 | 
					export default defineConfig({
 | 
				
			||||||
 | 
					  plugins: [vue()],
 | 
				
			||||||
 | 
					  base: './',
 | 
				
			||||||
 | 
					})
 | 
				
			||||||
							
								
								
									
										387
									
								
								code/web/task_schedule/yarn.lock
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										387
									
								
								code/web/task_schedule/yarn.lock
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,387 @@
 | 
				
			|||||||
 | 
					# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
 | 
				
			||||||
 | 
					# yarn lockfile v1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@babel/parser@^7.16.4":
 | 
				
			||||||
 | 
					  version "7.20.15"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@babel/parser/-/parser-7.20.15.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@ctrl/tinycolor@^3.4.1":
 | 
				
			||||||
 | 
					  version "3.6.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.6.0.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-/Z3l6pXthq0JvMYdUFyX9j0MaCltlIn6mfh9jLyQwg5aPKxkyNa0PTHtU1AlFXLNk55ZuAeJRcpvq+tmLfKmaQ==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@element-plus/icons-vue@^2.0.6":
 | 
				
			||||||
 | 
					  version "2.0.10"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@element-plus/icons-vue/-/icons-vue-2.0.10.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-ygEZ1mwPjcPo/OulhzLE7mtDrQBWI8vZzEWSNB2W/RNCRjoQGwbaK4N8lV4rid7Ts4qvySU3njMN7YCiSlSaTQ==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@esbuild/win32-x64@0.16.17":
 | 
				
			||||||
 | 
					  version "0.16.17"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@floating-ui/core@^1.2.1":
 | 
				
			||||||
 | 
					  version "1.2.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@floating-ui/core/-/core-1.2.1.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-LSqwPZkK3rYfD7GKoIeExXOyYx6Q1O4iqZWwIehDNuv3Dv425FIAE8PRwtAx1imEolFTHgBEcoFHm9MDnYgPCg==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@floating-ui/dom@^1.0.1":
 | 
				
			||||||
 | 
					  version "1.2.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@floating-ui/dom/-/dom-1.2.1.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-Rt45SmRiV8eU+xXSB9t0uMYiQ/ZWGE/jumse2o3i5RGlyvcbqOF4q+1qBnzLE2kZ5JGhq0iMkcGXUKbFe7MpTA==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@floating-ui/core" "^1.2.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@popperjs/core@npm:@sxzz/popperjs-es@^2.11.7":
 | 
				
			||||||
 | 
					  version "2.11.7"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@types/lodash-es@*", "@types/lodash-es@^4.17.6":
 | 
				
			||||||
 | 
					  version "4.17.6"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.6.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-R+zTeVUKDdfoRxpAryaQNRKk3105Rrgx2CFRClIgRGaqDTdjsm8h6IYA8ir584W3ePzkZfst5xIgDwYrlh9HLg==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@types/lodash" "*"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@types/lodash@*", "@types/lodash@^4.14.182":
 | 
				
			||||||
 | 
					  version "4.14.191"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@types/lodash/-/lodash-4.14.191.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@types/web-bluetooth@^0.0.16":
 | 
				
			||||||
 | 
					  version "0.0.16"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@vitejs/plugin-vue@^4.0.0":
 | 
				
			||||||
 | 
					  version "4.0.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-4.0.0.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-e0X4jErIxAB5oLtDqbHvHpJe/uWNkdpYV83AOG2xo2tEVSzCzewgJMtREZM30wXnM5ls90hxiOtAuVU6H5JgbA==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@vue/compiler-core@3.2.47":
 | 
				
			||||||
 | 
					  version "3.2.47"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.2.47.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@babel/parser" "^7.16.4"
 | 
				
			||||||
 | 
					    "@vue/shared" "3.2.47"
 | 
				
			||||||
 | 
					    estree-walker "^2.0.2"
 | 
				
			||||||
 | 
					    source-map "^0.6.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@vue/compiler-dom@3.2.47":
 | 
				
			||||||
 | 
					  version "3.2.47"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.2.47.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-dBBnEHEPoftUiS03a4ggEig74J2YBZ2UIeyfpcRM2tavgMWo4bsEfgCGsu+uJIL/vax9S+JztH8NmQerUo7shQ==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@vue/compiler-core" "3.2.47"
 | 
				
			||||||
 | 
					    "@vue/shared" "3.2.47"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@vue/compiler-sfc@3.2.47":
 | 
				
			||||||
 | 
					  version "3.2.47"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.2.47.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@babel/parser" "^7.16.4"
 | 
				
			||||||
 | 
					    "@vue/compiler-core" "3.2.47"
 | 
				
			||||||
 | 
					    "@vue/compiler-dom" "3.2.47"
 | 
				
			||||||
 | 
					    "@vue/compiler-ssr" "3.2.47"
 | 
				
			||||||
 | 
					    "@vue/reactivity-transform" "3.2.47"
 | 
				
			||||||
 | 
					    "@vue/shared" "3.2.47"
 | 
				
			||||||
 | 
					    estree-walker "^2.0.2"
 | 
				
			||||||
 | 
					    magic-string "^0.25.7"
 | 
				
			||||||
 | 
					    postcss "^8.1.10"
 | 
				
			||||||
 | 
					    source-map "^0.6.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@vue/compiler-ssr@3.2.47":
 | 
				
			||||||
 | 
					  version "3.2.47"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.2.47.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-wVXC+gszhulcMD8wpxMsqSOpvDZ6xKXSVWkf50Guf/S+28hTAXPDYRTbLQ3EDkOP5Xz/+SY37YiwDquKbJOgZw==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@vue/compiler-dom" "3.2.47"
 | 
				
			||||||
 | 
					    "@vue/shared" "3.2.47"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@vue/reactivity-transform@3.2.47":
 | 
				
			||||||
 | 
					  version "3.2.47"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.2.47.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@babel/parser" "^7.16.4"
 | 
				
			||||||
 | 
					    "@vue/compiler-core" "3.2.47"
 | 
				
			||||||
 | 
					    "@vue/shared" "3.2.47"
 | 
				
			||||||
 | 
					    estree-walker "^2.0.2"
 | 
				
			||||||
 | 
					    magic-string "^0.25.7"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@vue/reactivity@3.2.47":
 | 
				
			||||||
 | 
					  version "3.2.47"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.2.47.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-7khqQ/75oyyg+N/e+iwV6lpy1f5wq759NdlS1fpAhFXa8VeAIKGgk2E/C4VF59lx5b+Ezs5fpp/5WsRYXQiKxQ==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@vue/shared" "3.2.47"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@vue/runtime-core@3.2.47":
 | 
				
			||||||
 | 
					  version "3.2.47"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.2.47.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-RZxbLQIRB/K0ev0K9FXhNbBzT32H9iRtYbaXb0ZIz2usLms/D55dJR2t6cIEUn6vyhS3ALNvNthI+Q95C+NOpA==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@vue/reactivity" "3.2.47"
 | 
				
			||||||
 | 
					    "@vue/shared" "3.2.47"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@vue/runtime-dom@3.2.47":
 | 
				
			||||||
 | 
					  version "3.2.47"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.2.47.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-ArXrFTjS6TsDei4qwNvgrdmHtD930KgSKGhS5M+j8QxXrDJYLqYw4RRcDy1bz1m1wMmb6j+zGLifdVHtkXA7gA==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@vue/runtime-core" "3.2.47"
 | 
				
			||||||
 | 
					    "@vue/shared" "3.2.47"
 | 
				
			||||||
 | 
					    csstype "^2.6.8"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@vue/server-renderer@3.2.47":
 | 
				
			||||||
 | 
					  version "3.2.47"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.2.47.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-dN9gc1i8EvmP9RCzvneONXsKfBRgqFeFZLurmHOveL7oH6HiFXJw5OGu294n1nHc/HMgTy6LulU/tv5/A7f/LA==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@vue/compiler-ssr" "3.2.47"
 | 
				
			||||||
 | 
					    "@vue/shared" "3.2.47"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@vue/shared@3.2.47":
 | 
				
			||||||
 | 
					  version "3.2.47"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@vue/shared/-/shared-3.2.47.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@vueuse/core@^9.1.0":
 | 
				
			||||||
 | 
					  version "9.12.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@vueuse/core/-/core-9.12.0.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-h/Di8Bvf6xRcvS/PvUVheiMYYz3U0tH3X25YxONSaAUBa841ayMwxkuzx/DGUMCW/wHWzD8tRy2zYmOC36r4sg==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@types/web-bluetooth" "^0.0.16"
 | 
				
			||||||
 | 
					    "@vueuse/metadata" "9.12.0"
 | 
				
			||||||
 | 
					    "@vueuse/shared" "9.12.0"
 | 
				
			||||||
 | 
					    vue-demi "*"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@vueuse/metadata@9.12.0":
 | 
				
			||||||
 | 
					  version "9.12.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-9.12.0.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-9oJ9MM9lFLlmvxXUqsR1wLt1uF7EVbP5iYaHJYqk+G2PbMjY6EXvZeTjbdO89HgoF5cI6z49o2zT/jD9SVoNpQ==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@vueuse/shared@9.12.0":
 | 
				
			||||||
 | 
					  version "9.12.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/@vueuse/shared/-/shared-9.12.0.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-TWuJLACQ0BVithVTRbex4Wf1a1VaRuSpVeyEd4vMUWl54PzlE0ciFUshKCXnlLuD0lxIaLK4Ypj3NXYzZh4+SQ==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    vue-demi "*"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					async-validator@^4.2.5:
 | 
				
			||||||
 | 
					  version "4.2.5"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					csstype@^2.6.8:
 | 
				
			||||||
 | 
					  version "2.6.21"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/csstype/-/csstype-2.6.21.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					dayjs@^1.11.3:
 | 
				
			||||||
 | 
					  version "1.11.7"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.7.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					element-plus@^2.2.30:
 | 
				
			||||||
 | 
					  version "2.2.30"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/element-plus/-/element-plus-2.2.30.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-HYSnmf2VMGa0gmw03evxevodPy3WimbAd4sfenOAhNs7Wl8IdT+YJjQyGAQjgEjRvhmujN4O/CZqhuEffRyOZg==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@ctrl/tinycolor" "^3.4.1"
 | 
				
			||||||
 | 
					    "@element-plus/icons-vue" "^2.0.6"
 | 
				
			||||||
 | 
					    "@floating-ui/dom" "^1.0.1"
 | 
				
			||||||
 | 
					    "@popperjs/core" "npm:@sxzz/popperjs-es@^2.11.7"
 | 
				
			||||||
 | 
					    "@types/lodash" "^4.14.182"
 | 
				
			||||||
 | 
					    "@types/lodash-es" "^4.17.6"
 | 
				
			||||||
 | 
					    "@vueuse/core" "^9.1.0"
 | 
				
			||||||
 | 
					    async-validator "^4.2.5"
 | 
				
			||||||
 | 
					    dayjs "^1.11.3"
 | 
				
			||||||
 | 
					    escape-html "^1.0.3"
 | 
				
			||||||
 | 
					    lodash "^4.17.21"
 | 
				
			||||||
 | 
					    lodash-es "^4.17.21"
 | 
				
			||||||
 | 
					    lodash-unified "^1.0.2"
 | 
				
			||||||
 | 
					    memoize-one "^6.0.0"
 | 
				
			||||||
 | 
					    normalize-wheel-es "^1.2.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					esbuild@^0.16.14:
 | 
				
			||||||
 | 
					  version "0.16.17"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/esbuild/-/esbuild-0.16.17.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==
 | 
				
			||||||
 | 
					  optionalDependencies:
 | 
				
			||||||
 | 
					    "@esbuild/android-arm" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/android-arm64" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/android-x64" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/darwin-arm64" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/darwin-x64" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/freebsd-arm64" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/freebsd-x64" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/linux-arm" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/linux-arm64" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/linux-ia32" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/linux-loong64" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/linux-mips64el" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/linux-ppc64" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/linux-riscv64" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/linux-s390x" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/linux-x64" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/netbsd-x64" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/openbsd-x64" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/sunos-x64" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/win32-arm64" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/win32-ia32" "0.16.17"
 | 
				
			||||||
 | 
					    "@esbuild/win32-x64" "0.16.17"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					escape-html@^1.0.3:
 | 
				
			||||||
 | 
					  version "1.0.3"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					estree-walker@^2.0.2:
 | 
				
			||||||
 | 
					  version "2.0.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					function-bind@^1.1.1:
 | 
				
			||||||
 | 
					  version "1.1.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					has@^1.0.3:
 | 
				
			||||||
 | 
					  version "1.0.3"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/has/-/has-1.0.3.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    function-bind "^1.1.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					is-core-module@^2.9.0:
 | 
				
			||||||
 | 
					  version "2.11.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.11.0.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    has "^1.0.3"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					lodash-es@*, lodash-es@^4.17.21:
 | 
				
			||||||
 | 
					  version "4.17.21"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					lodash-unified@^1.0.2:
 | 
				
			||||||
 | 
					  version "1.0.3"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/lodash-unified/-/lodash-unified-1.0.3.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					lodash@*, lodash@^4.17.21:
 | 
				
			||||||
 | 
					  version "4.17.21"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					magic-string@^0.25.7:
 | 
				
			||||||
 | 
					  version "0.25.9"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/magic-string/-/magic-string-0.25.9.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    sourcemap-codec "^1.4.8"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					memoize-one@^6.0.0:
 | 
				
			||||||
 | 
					  version "6.0.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/memoize-one/-/memoize-one-6.0.0.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					nanoid@^3.3.4:
 | 
				
			||||||
 | 
					  version "3.3.4"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.4.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					normalize-wheel-es@^1.2.0:
 | 
				
			||||||
 | 
					  version "1.2.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					path-parse@^1.0.7:
 | 
				
			||||||
 | 
					  version "1.0.7"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					picocolors@^1.0.0:
 | 
				
			||||||
 | 
					  version "1.0.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					postcss@^8.1.10, postcss@^8.4.21:
 | 
				
			||||||
 | 
					  version "8.4.21"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/postcss/-/postcss-8.4.21.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    nanoid "^3.3.4"
 | 
				
			||||||
 | 
					    picocolors "^1.0.0"
 | 
				
			||||||
 | 
					    source-map-js "^1.0.2"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					resolve@^1.22.1:
 | 
				
			||||||
 | 
					  version "1.22.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/resolve/-/resolve-1.22.1.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    is-core-module "^2.9.0"
 | 
				
			||||||
 | 
					    path-parse "^1.0.7"
 | 
				
			||||||
 | 
					    supports-preserve-symlinks-flag "^1.0.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					rollup@^3.10.0:
 | 
				
			||||||
 | 
					  version "3.15.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/rollup/-/rollup-3.15.0.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-F9hrCAhnp5/zx/7HYmftvsNBkMfLfk/dXUh73hPSM2E3CRgap65orDNJbLetoiUFwSAk6iHPLvBrZ5iHYvzqsg==
 | 
				
			||||||
 | 
					  optionalDependencies:
 | 
				
			||||||
 | 
					    fsevents "~2.3.2"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					source-map-js@^1.0.2:
 | 
				
			||||||
 | 
					  version "1.0.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					source-map@^0.6.1:
 | 
				
			||||||
 | 
					  version "0.6.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					sourcemap-codec@^1.4.8:
 | 
				
			||||||
 | 
					  version "1.4.8"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					supports-preserve-symlinks-flag@^1.0.0:
 | 
				
			||||||
 | 
					  version "1.0.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					vite@^4.0.0, vite@^4.1.0:
 | 
				
			||||||
 | 
					  version "4.1.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/vite/-/vite-4.1.1.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-LM9WWea8vsxhr782r9ntg+bhSFS06FJgCvvB0+8hf8UWtvaiDagKYWXndjfX6kGl74keHJUcpzrQliDXZlF5yg==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    esbuild "^0.16.14"
 | 
				
			||||||
 | 
					    postcss "^8.4.21"
 | 
				
			||||||
 | 
					    resolve "^1.22.1"
 | 
				
			||||||
 | 
					    rollup "^3.10.0"
 | 
				
			||||||
 | 
					  optionalDependencies:
 | 
				
			||||||
 | 
					    fsevents "~2.3.2"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					vue-demi@*:
 | 
				
			||||||
 | 
					  version "0.13.11"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.13.11.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"vue@^3.0.0-0 || ^2.6.0", vue@^3.2.0, vue@^3.2.25, vue@^3.2.45, vue@3.2.47:
 | 
				
			||||||
 | 
					  version "3.2.47"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmmirror.com/vue/-/vue-3.2.47.tgz"
 | 
				
			||||||
 | 
					  integrity sha512-60188y/9Dc9WVrAZeUVSDxRQOZ+z+y5nO2ts9jWXSTkMvayiWxCWOWtBQoYjLeccfXkiiPZWAHcV+WTPhkqJHQ==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@vue/compiler-dom" "3.2.47"
 | 
				
			||||||
 | 
					    "@vue/compiler-sfc" "3.2.47"
 | 
				
			||||||
 | 
					    "@vue/runtime-dom" "3.2.47"
 | 
				
			||||||
 | 
					    "@vue/server-renderer" "3.2.47"
 | 
				
			||||||
 | 
					    "@vue/shared" "3.2.47"
 | 
				
			||||||
		Reference in New Issue
	
	Block a user