meixioacomponent 0.3.29 → 0.3.30
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/lib/meixioacomponent.common.js +2286 -8554
- package/lib/meixioacomponent.umd.js +2286 -8554
- package/lib/meixioacomponent.umd.min.js +23 -25
- package/package.json +41 -41
- package/packages/components/proForm/proForm/pro_form_item.vue +3 -1
- package/packages/components/proPageTable/oa_pro_table.vue +227 -195
- package/src/component/test.vue +66 -65
- package/src/test.js +13 -0
package/package.json
CHANGED
|
@@ -1,42 +1,42 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
2
|
+
"name": "meixioacomponent",
|
|
3
|
+
"version": "0.3.30",
|
|
4
|
+
"private": false,
|
|
5
|
+
"author": "YuRi",
|
|
6
|
+
"main": "lib/meixioacomponent.umd.min.js",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"serve": "vue-cli-service serve",
|
|
9
|
+
"lib": "vue-cli-service build --target lib --name meixioacomponent --dest lib packages/components/index.js",
|
|
10
|
+
"build:theme": "cp-cli packages/components/style/ lib/style"
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"axios": "^0.27.2",
|
|
14
|
+
"core-js": "^3.6.5",
|
|
15
|
+
"cp-cli": "^1.0.2",
|
|
16
|
+
"dayjs": "^1.11.3",
|
|
17
|
+
"element-ui": "^2.15.6",
|
|
18
|
+
"gulp": "^4.0.0",
|
|
19
|
+
"register-service-worker": "^1.7.1",
|
|
20
|
+
"vue": "^2.7.0",
|
|
21
|
+
"vue-router": "^3.2.0",
|
|
22
|
+
"vuedraggable": "^2.24.3",
|
|
23
|
+
"vuex": "^3.4.0"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@vue/cli-plugin-babel": "~4.5.18",
|
|
27
|
+
"@vue/cli-plugin-pwa": "~4.5.13",
|
|
28
|
+
"@vue/cli-plugin-router": "~4.5.13",
|
|
29
|
+
"@vue/cli-plugin-vuex": "~4.5.13",
|
|
30
|
+
"@vue/cli-service": "~4.5.13",
|
|
31
|
+
"babel-plugin-component": "^1.1.1",
|
|
32
|
+
"babel-plugin-transform-remove-console": "^6.9.4",
|
|
33
|
+
"less": "^3.0.4",
|
|
34
|
+
"less-loader": "^5.0.0",
|
|
35
|
+
"vue-template-compiler": "^2.7.8"
|
|
36
|
+
},
|
|
37
|
+
"browserslist": [
|
|
38
|
+
"> 1%",
|
|
39
|
+
"last 2 versions",
|
|
40
|
+
"not dead"
|
|
41
|
+
]
|
|
42
|
+
}
|
|
@@ -376,6 +376,8 @@ export default {
|
|
|
376
376
|
init() {
|
|
377
377
|
if (this.$props.form) {
|
|
378
378
|
this.isEdit = true
|
|
379
|
+
} else {
|
|
380
|
+
this.isEdit = false
|
|
379
381
|
}
|
|
380
382
|
},
|
|
381
383
|
handleContent() {
|
|
@@ -444,7 +446,7 @@ export default {
|
|
|
444
446
|
},
|
|
445
447
|
watch: {
|
|
446
448
|
form(newVal, oldVal) {
|
|
447
|
-
this.init()
|
|
449
|
+
this.init()
|
|
448
450
|
},
|
|
449
451
|
},
|
|
450
452
|
}
|