cloud-web-corejs 1.0.273 → 1.0.274
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -93
- package/src/views/user/menu/voc_list.vue +686 -0
- package/src/views/user/role/edit.vue +32 -9
- package/src/views/user/role/list.vue +145 -67
- package/src/views/user/role/voc_edit.vue +293 -0
- package/src/components/baseArea/index.vue +0 -1628
- package/src/components/micro-view-host/contract.js +0 -66
- package/src/components/micro-view-host/index.vue +0 -148
- package/src/microRouter/index.js +0 -447
- package/src/public-path.js +0 -38
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloud-web-corejs",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.274",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vue-cli-service serve",
|
|
7
7
|
"lint": "eslint --ext .js,.vue src",
|
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"copy-webpack-plugin": "5.1.2",
|
|
26
26
|
"core-js": "^3.8.3",
|
|
27
27
|
"dayjs": "^1.11.13",
|
|
28
|
-
"dompurify": "^3.3.1",
|
|
29
28
|
"dhtmlx-gantt": "^9.1.1",
|
|
30
29
|
"element-ui": "^2.15.14",
|
|
31
30
|
"esdk-obs-browserjs": "^3.25.6",
|
|
@@ -42,6 +41,7 @@
|
|
|
42
41
|
"node-polyfill-webpack-plugin": "^4.0.0",
|
|
43
42
|
"normalize.css": "7.0.0",
|
|
44
43
|
"nprogress": "0.2.0",
|
|
44
|
+
"qiankun": "^2.10.16",
|
|
45
45
|
"qrcode": "^1.5.1",
|
|
46
46
|
"qs": "6.10.3",
|
|
47
47
|
"sortablejs": "1.8.4",
|
|
@@ -100,93 +100,6 @@
|
|
|
100
100
|
"webpack-bundle-analyzer": "^4.9.1",
|
|
101
101
|
"xe-utils": "3.5.2"
|
|
102
102
|
},
|
|
103
|
-
"dependencies": {
|
|
104
|
-
"@claviska/jquery-minicolors": "2.3.6",
|
|
105
|
-
"@codemirror/lang-javascript": "^6.1.9",
|
|
106
|
-
"@codemirror/state": "^6.5.4",
|
|
107
|
-
"@codemirror/view": "^6.39.13",
|
|
108
|
-
"@formulajs/formulajs": "^4.3.1",
|
|
109
|
-
"@vue/composition-api": "1.0.5",
|
|
110
|
-
"ace-builds": "1.11.0",
|
|
111
|
-
"axios": "0.18.1",
|
|
112
|
-
"canvg": "3.0.10",
|
|
113
|
-
"clipboard": "2.0.8",
|
|
114
|
-
"codemirror": "^6.0.1",
|
|
115
|
-
"concurrent-tasks": "1.0.7",
|
|
116
|
-
"core-js": "^3.8.3",
|
|
117
|
-
"crypto-js": "^4.2.0",
|
|
118
|
-
"dhtmlx-gantt": "^9.1.1",
|
|
119
|
-
"dompurify": "^3.3.1",
|
|
120
|
-
"echarts": "5.1.2",
|
|
121
|
-
"element-ui": "^2.15.14",
|
|
122
|
-
"esdk-obs-browserjs": "^3.25.6",
|
|
123
|
-
"exceljs": "^4.4.0",
|
|
124
|
-
"file-saver": "2.0.5",
|
|
125
|
-
"html2canvas": "^1.4.1",
|
|
126
|
-
"jquery": "3.6.0",
|
|
127
|
-
"js-base64": "^3.7.7",
|
|
128
|
-
"js-cookie": "2.2.0",
|
|
129
|
-
"jsbarcode": "3.11.5",
|
|
130
|
-
"jspdf": "^3.0.1",
|
|
131
|
-
"jsqr": "^1.4.0",
|
|
132
|
-
"lodash": "4.17.21",
|
|
133
|
-
"luckyexcel": "^1.0.1",
|
|
134
|
-
"moment": "2.29.4",
|
|
135
|
-
"normalize.css": "7.0.0",
|
|
136
|
-
"nprogress": "0.2.0",
|
|
137
|
-
"nzh": "1.0.8",
|
|
138
|
-
"qiankun": "^2.10.16",
|
|
139
|
-
"qrcode": "^1.5.1",
|
|
140
|
-
"qs": "6.10.3",
|
|
141
|
-
"socket.io-client": "4.5.1",
|
|
142
|
-
"sortablejs": "^1.8.4",
|
|
143
|
-
"spark-md5": "^3.0.1",
|
|
144
|
-
"swiper": "4.0.7",
|
|
145
|
-
"vue": "2.6.12",
|
|
146
|
-
"vue-echarts": "6.0.0",
|
|
147
|
-
"vue-i18n": "^8.22.2",
|
|
148
|
-
"vue-ls": "^4.2.0",
|
|
149
|
-
"vue-router": "3.0.2",
|
|
150
|
-
"vuedraggable": "2.24.3",
|
|
151
|
-
"vuex": "3.1.0",
|
|
152
|
-
"vxe-table": "3.5.9",
|
|
153
|
-
"xe-utils": "3.5.2",
|
|
154
|
-
"xlsx": "^0.14.1"
|
|
155
|
-
},
|
|
156
|
-
"devDependencies": {
|
|
157
|
-
"@babel/core": "^7.12.16",
|
|
158
|
-
"@babel/eslint-parser": "^7.12.16",
|
|
159
|
-
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
160
|
-
"@vue/cli-plugin-babel": "~5.0.0",
|
|
161
|
-
"@vue/cli-plugin-eslint": "~5.0.0",
|
|
162
|
-
"@vue/cli-plugin-unit-jest": "~5.0.9",
|
|
163
|
-
"@vue/cli-service": "~5.0.0",
|
|
164
|
-
"@vue/test-utils": "^1.3.6",
|
|
165
|
-
"@vue/vue2-jest": "^27.0.0",
|
|
166
|
-
"autoprefixer": "9.5.1",
|
|
167
|
-
"babel-plugin-dynamic-import-node": "2.3.3",
|
|
168
|
-
"chalk": "2.4.2",
|
|
169
|
-
"compression-webpack-plugin": "5.0.2",
|
|
170
|
-
"connect": "3.6.6",
|
|
171
|
-
"eslint": "^7.32.0",
|
|
172
|
-
"eslint-plugin-vue": "^8.0.3",
|
|
173
|
-
"html-webpack-plugin": "~5.0.0",
|
|
174
|
-
"husky": "1.3.1",
|
|
175
|
-
"lint-staged": "8.1.5",
|
|
176
|
-
"node-polyfill-webpack-plugin": "^4.0.0",
|
|
177
|
-
"plop": "2.3.0",
|
|
178
|
-
"postcss": "^8.2.8",
|
|
179
|
-
"postcss-loader": "^4.0.4",
|
|
180
|
-
"runjs": "4.4.2",
|
|
181
|
-
"sass": "^1.32.7",
|
|
182
|
-
"sass-loader": "^12.0.0",
|
|
183
|
-
"serve-static": "1.13.2",
|
|
184
|
-
"speed-measure-webpack-plugin": "^1.5.0",
|
|
185
|
-
"svg-sprite-loader": "^6.0.11",
|
|
186
|
-
"svgo": "1.2.0",
|
|
187
|
-
"vue-template-compiler": "2.6.12",
|
|
188
|
-
"webpack-bundle-analyzer": "^4.9.1"
|
|
189
|
-
},
|
|
190
103
|
"eslintConfig": {
|
|
191
104
|
"root": true,
|
|
192
105
|
"env": {
|
|
@@ -209,7 +122,6 @@
|
|
|
209
122
|
"src/components/advancedSearchDialog",
|
|
210
123
|
"src/components/baseAlert",
|
|
211
124
|
"src/components/baseAttachment",
|
|
212
|
-
"src/components/baseArea",
|
|
213
125
|
"src/components/baseInputBatch",
|
|
214
126
|
"src/components/baseInputExport",
|
|
215
127
|
"src/components/baseInputNumber",
|
|
@@ -229,7 +141,6 @@
|
|
|
229
141
|
"src/components/jdPrint",
|
|
230
142
|
"src/components/jsonImport",
|
|
231
143
|
"src/components/langImport",
|
|
232
|
-
"src/components/micro-view-host",
|
|
233
144
|
"src/components/mobile",
|
|
234
145
|
"src/components/onlineTalk",
|
|
235
146
|
"src/components/oplogTable",
|
|
@@ -271,8 +182,6 @@
|
|
|
271
182
|
"src/router",
|
|
272
183
|
"src/permission.js",
|
|
273
184
|
"src/index.js",
|
|
274
|
-
"src/public-path.js",
|
|
275
|
-
"src/microRouter",
|
|
276
185
|
"src/App.vue"
|
|
277
186
|
],
|
|
278
187
|
"publishConfig": {
|