Aurora il y a 4 ans
Parent
commit
a616409ab0

+ 0 - 4
shanXiPlatform/.github/FUNDING.yml

@@ -1,4 +0,0 @@
1
-# These are supported funding model platforms
2
-
3
-patreon: panjiachen
4
-custom: https://panjiachen.github.io/vue-element-admin-site/donate

+ 0 - 33
shanXiPlatform/.github/ISSUE_TEMPLATE/bug_report.md

@@ -1,33 +0,0 @@
1
----
2
-name: Bug report(报告问题)
3
-about: Create a report to help us improve
4
----
5
-<!--
6
-    注意:为更好的解决你的问题,请参考模板提供完整信息,准确描述问题,信息不全的 issue 将被关闭。
7
-
8
-    Note: In order to better solve your problem, please refer to the template to provide complete information, accurately describe the problem, and the incomplete information issue will be closed.
9
--->
10
-
11
-
12
-## Bug report(问题描述)
13
-
14
-#### Steps to reproduce(问题复现步骤)
15
-<!--
16
-1. [xxx]
17
-2. [xxx]
18
-3. [xxxx]
19
--->
20
-
21
-#### Screenshot or Gif(截图或动态图)
22
-
23
-
24
-#### Link to minimal reproduction(最小可在线还原demo)
25
-
26
-<!--
27
-Please only use Codepen, JSFiddle, CodeSandbox or a github repo
28
--->
29
-
30
-#### Other relevant information(格外信息)
31
-- Your OS:
32
-- Node.js version:
33
-- vue-element-admin version:

+ 0 - 7
shanXiPlatform/.github/ISSUE_TEMPLATE/feature_request.md

@@ -1,7 +0,0 @@
1
----
2
-name: Feature Request(新功能建议)
3
-about: Suggest an idea for this project
4
----
5
-
6
-## Feature request(新功能建议)
7
-

+ 0 - 35
shanXiPlatform/.github/ISSUE_TEMPLATE/question.md

@@ -1,35 +0,0 @@
1
----
2
-name: Question(提问)
3
-about: Asking questions about use
4
----
5
-
6
-## Question(提问)
7
-
8
-<!--
9
-    提问之前,请确定你已经过自己的努力,尝试解决过这个问题。
10
-    若是代码相关问题,请不要只截图,请提供在线 demo,以便节约彼此的时间。
11
-
12
-    Before asking a question, please make sure that you have tried your best to solve this problem.
13
-    If it's a code-related issue, please don't just take screenshots. Please provide an online demo to save each other's time.
14
--->
15
-
16
-#### Steps to reproduce(问题复现步骤)
17
-<!--
18
-1. [xxx]
19
-2. [xxx]
20
-3. [xxxx]
21
--->
22
-
23
-#### Screenshot or Gif(截图或动态图)
24
-
25
-
26
-#### Link to minimal reproduction(最小可在线还原demo)
27
-
28
-<!--
29
-Please only use Codepen, JSFiddle, CodeSandbox or a github repo
30
--->
31
-
32
-#### Other relevant information(格外信息)
33
-- Your OS:
34
-- Node.js version:
35
-- vue-element-admin version:

+ 115 - 117
shanXiPlatform/package.json

@@ -1,119 +1,117 @@
1 1
 {
2
-  "name": "vue-element-admin",
3
-  "version": "4.4.0",
4
-  "description": "A magical vue admin. An out-of-box UI solution for enterprise applications. Newest development stack of vue. Lots of awesome features",
5
-  "author": "Pan <panfree23@gmail.com>",
6
-  "scripts": {
7
-    "dev": "vue-cli-service serve",
8
-    "lint": "eslint --ext .js,.vue src",
9
-    "build:prod": "vue-cli-service build",
10
-    "build:stage": "vue-cli-service build --mode staging",
11
-    "preview": "node build/index.js --preview",
12
-    "new": "plop",
13
-    "svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml",
14
-    "test:unit": "jest --clearCache && vue-cli-service test:unit",
15
-    "test:ci": "npm run lint && npm run test:unit",
16
-    "start": "node index.js",
17
-    "server": "nodemon index.js --ignore client",
18
-    "webpack": "webpack --version"
19
-  },
20
-  "dependencies": {
21
-    "axios": "0.18.1",
22
-    "bmap": "^1.0.1",
23
-    "clipboard": "2.0.4",
24
-    "codemirror": "5.45.0",
25
-    "core-js": "3.6.5",
26
-    "driver.js": "0.9.5",
27
-    "dropzone": "5.5.1",
28
-    "echarts": "^4.9.0",
29
-    "element-ui": "2.13.2",
30
-    "file-saver": "2.0.1",
31
-    "fuse.js": "3.4.4",
32
-    "js-cookie": "2.2.0",
33
-    "jsonlint": "1.6.3",
34
-    "jszip": "3.2.1",
35
-    "lint-staged": "^8.1.5",
36
-    "normalize.css": "7.0.0",
37
-    "nprogress": "0.2.0",
38
-    "path-to-regexp": "2.4.0",
39
-    "quill": "^1.3.7",
40
-    "screenfull": "4.2.0",
41
-    "script-loader": "0.7.2",
42
-    "sortablejs": "1.8.4",
43
-    "tui-editor": "1.3.3",
44
-    "vue": "2.6.10",
45
-    "vue-count-to": "1.0.13",
46
-    "vue-quill-editor": "^3.0.6",
47
-    "vue-router": "3.0.2",
48
-    "vue-splitpane": "1.0.4",
49
-    "vuedraggable": "2.20.0",
50
-    "vuex": "3.1.0",
51
-    "xlsx": "0.14.1"
52
-  },
53
-  "devDependencies": {
54
-    "@vue/cli-plugin-babel": "4.4.4",
55
-    "@vue/cli-plugin-eslint": "4.4.4",
56
-    "@vue/cli-plugin-unit-jest": "4.4.4",
57
-    "@vue/cli-service": "4.4.4",
58
-    "@vue/test-utils": "1.0.0-beta.29",
59
-    "autoprefixer": "9.5.1",
60
-    "babel-eslint": "10.1.0",
61
-    "babel-jest": "23.6.0",
62
-    "babel-plugin-dynamic-import-node": "2.3.3",
63
-    "chalk": "2.4.2",
64
-    "chokidar": "2.1.5",
65
-    "connect": "3.6.6",
66
-    "eslint": "6.7.2",
67
-    "eslint-plugin-vue": "6.2.2",
68
-    "html-webpack-plugin": "3.2.0",
69
-    "husky": "1.3.1",
70
-    "lint-staged": "^8.1.5",
71
-    "mockjs": "1.0.1-beta3",
72
-    "plop": "2.3.0",
73
-    "runjs": "4.3.2",
74
-    "sass": "1.26.2",
75
-    "sass-loader": "8.0.2",
76
-    "script-ext-html-webpack-plugin": "2.1.3",
77
-    "serve-static": "1.13.2",
78
-    "svg-sprite-loader": "4.1.3",
79
-    "svgo": "1.2.0",
80
-    "vue-template-compiler": "2.6.10",
81
-    "webpack-cli": "^4.3.1"
82
-  },
83
-  "browserslist": [
84
-    "> 1%",
85
-    "last 2 versions"
86
-  ],
87
-  "bugs": {
88
-    "url": "https://github.com/PanJiaChen/vue-element-admin/issues"
89
-  },
90
-  "engines": {
91
-    "node": ">=8.9",
92
-    "npm": ">= 3.0.0"
93
-  },
94
-  "keywords": [
95
-    "vue",
96
-    "admin",
97
-    "dashboard",
98
-    "element-ui",
99
-    "boilerplate",
100
-    "admin-template",
101
-    "management-system"
102
-  ],
103
-  "license": "MIT",
104
-  "lint-staged": {
105
-    "src/**/*.{js,vue}": [
106
-      "eslint --fix",
107
-      "git add"
108
-    ]
109
-  },
110
-  "husky": {
111
-    "hooks": {
112
-      "pre-commit": "lint-staged"
2
+    "name": "vue-element-admin",
3
+    "version": "4.4.0",
4
+    "description": "A magical vue admin. An out-of-box UI solution for enterprise applications. Newest development stack of vue. Lots of awesome features",
5
+    "author": "Pan <panfree23@gmail.com>",
6
+    "scripts": {
7
+        "dev": "vue-cli-service serve",
8
+        "lint": "eslint --ext .js,.vue src",
9
+        "build:prod": "vue-cli-service build",
10
+        "build:stage": "vue-cli-service build --mode staging",
11
+        "preview": "node build/index.js --preview",
12
+        "new": "plop",
13
+        "svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml",
14
+        "test:unit": "jest --clearCache && vue-cli-service test:unit",
15
+        "test:ci": "npm run lint && npm run test:unit",
16
+        "start": "node index.js",
17
+        "server": "nodemon index.js --ignore client",
18
+        "webpack": "webpack --version"
19
+    },
20
+    "dependencies": {
21
+        "axios": "0.18.1",
22
+        "bmap": "^1.0.1",
23
+        "clipboard": "2.0.4",
24
+        "codemirror": "5.45.0",
25
+        "core-js": "3.6.5",
26
+        "driver.js": "0.9.5",
27
+        "dropzone": "5.5.1",
28
+        "echarts": "^4.9.0",
29
+        "element-ui": "2.13.2",
30
+        "file-saver": "2.0.1",
31
+        "fuse.js": "3.4.4",
32
+        "js-cookie": "2.2.0",
33
+        "jsonlint": "1.6.3",
34
+        "jszip": "3.2.1",
35
+        "lint-staged": "^8.1.5",
36
+        "normalize.css": "7.0.0",
37
+        "nprogress": "0.2.0",
38
+        "path-to-regexp": "2.4.0",
39
+        "quill": "^1.3.7",
40
+        "screenfull": "4.2.0",
41
+        "script-loader": "0.7.2",
42
+        "sortablejs": "1.8.4",
43
+        "tui-editor": "1.3.3",
44
+        "vue": "2.6.10",
45
+        "vue-count-to": "1.0.13",
46
+        "vue-quill-editor": "^3.0.6",
47
+        "vue-router": "3.0.2",
48
+        "vue-splitpane": "1.0.4",
49
+        "vuedraggable": "2.20.0",
50
+        "vuex": "3.1.0",
51
+        "xlsx": "0.14.1"
52
+    },
53
+    "devDependencies": {
54
+        "@vue/cli-plugin-babel": "4.4.4",
55
+        "@vue/cli-plugin-eslint": "4.4.4",
56
+        "@vue/cli-plugin-unit-jest": "4.4.4",
57
+        "@vue/cli-service": "4.4.4",
58
+        "@vue/test-utils": "1.0.0-beta.29",
59
+        "autoprefixer": "9.5.1",
60
+        "babel-eslint": "10.1.0",
61
+        "babel-jest": "23.6.0",
62
+        "babel-plugin-dynamic-import-node": "2.3.3",
63
+        "chalk": "2.4.2",
64
+        "chokidar": "2.1.5",
65
+        "connect": "3.6.6",
66
+        "eslint": "6.7.2",
67
+        "eslint-plugin-vue": "6.2.2",
68
+        "html-webpack-plugin": "3.2.0",
69
+        "husky": "1.3.1",
70
+        "lint-staged": "^8.1.5",
71
+        "mockjs": "1.0.1-beta3",
72
+        "plop": "2.3.0",
73
+        "runjs": "4.3.2",
74
+        "sass": "1.26.2",
75
+        "sass-loader": "8.0.2",
76
+        "script-ext-html-webpack-plugin": "2.1.3",
77
+        "serve-static": "1.13.2",
78
+        "svg-sprite-loader": "4.1.3",
79
+        "svgo": "1.2.0",
80
+        "vue-template-compiler": "2.6.10",
81
+        "webpack-cli": "^4.3.1"
82
+    },
83
+    "browserslist": [
84
+        "> 1%",
85
+        "last 2 versions"
86
+    ],
87
+
88
+    "engines": {
89
+        "node": ">=8.9",
90
+        "npm": ">= 3.0.0"
91
+    },
92
+    "keywords": [
93
+        "vue",
94
+        "admin",
95
+        "dashboard",
96
+        "element-ui",
97
+        "boilerplate",
98
+        "admin-template",
99
+        "management-system"
100
+    ],
101
+    "license": "MIT",
102
+    "lint-staged": {
103
+        "src/**/*.{js,vue}": [
104
+            "eslint --fix",
105
+            "git add"
106
+        ]
107
+    },
108
+    "husky": {
109
+        "hooks": {
110
+            "pre-commit": "lint-staged"
111
+        }
112
+    },
113
+    "repository": {
114
+        "type": "git",
115
+        "url": "git+https://github.com/PanJiaChen/vue-element-admin.git"
113 116
     }
114
-  },
115
-  "repository": {
116
-    "type": "git",
117
-    "url": "git+https://github.com/PanJiaChen/vue-element-admin.git"
118
-  }
119
-}
117
+}