@form-create/iview 2.5.34 → 2.5.36
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/dist/form-create.js +299 -185
- package/dist/form-create.min.js +2 -2
- package/dist/form-create.min.js.map +1 -1
- package/package.json +11 -11
- package/src/core/manager.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@form-create/iview",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.36",
|
|
4
4
|
"description": "iview动态表单|form-create is a form generation component that can generate dynamic rendering, data collection, verification and submission functions through JSON. Supports 3 UI frameworks, and supports the generation of any Vue components. Built-in 20 kinds of commonly used form components and custom components, no matter how complex forms can be easily handled.",
|
|
5
5
|
"main": "./dist/form-create.min.js",
|
|
6
6
|
"module": "./dist/form-create.min.js",
|
|
@@ -43,16 +43,16 @@
|
|
|
43
43
|
},
|
|
44
44
|
"homepage": "http://www.form-create.com",
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@form-create/component-ivu-checkbox": "^2.5.
|
|
47
|
-
"@form-create/component-ivu-frame": "^2.5.
|
|
48
|
-
"@form-create/component-ivu-group": "^2.5.
|
|
49
|
-
"@form-create/component-ivu-radio": "^2.5.
|
|
50
|
-
"@form-create/component-ivu-select": "^2.5.
|
|
51
|
-
"@form-create/component-ivu-tree": "^2.5.
|
|
52
|
-
"@form-create/component-ivu-upload": "^2.5.
|
|
46
|
+
"@form-create/component-ivu-checkbox": "^2.5.36",
|
|
47
|
+
"@form-create/component-ivu-frame": "^2.5.36",
|
|
48
|
+
"@form-create/component-ivu-group": "^2.5.36",
|
|
49
|
+
"@form-create/component-ivu-radio": "^2.5.36",
|
|
50
|
+
"@form-create/component-ivu-select": "^2.5.36",
|
|
51
|
+
"@form-create/component-ivu-tree": "^2.5.36",
|
|
52
|
+
"@form-create/component-ivu-upload": "^2.5.36",
|
|
53
53
|
"@form-create/component-subform": "^2.5.25",
|
|
54
|
-
"@form-create/core": "^2.5.
|
|
55
|
-
"@form-create/utils": "^2.5.
|
|
54
|
+
"@form-create/core": "^2.5.36",
|
|
55
|
+
"@form-create/utils": "^2.5.36"
|
|
56
56
|
},
|
|
57
57
|
"publishConfig": {
|
|
58
58
|
"access": "public"
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"iview": "^3.3.3",
|
|
65
65
|
"v-jsoneditor": "^1.4.2"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "68f6b991d75aa2f81a15b441553f78ecb367a698"
|
|
68
68
|
}
|
package/src/core/manager.js
CHANGED
|
@@ -102,7 +102,7 @@ export default {
|
|
|
102
102
|
extend(this.rule, {key, ref});
|
|
103
103
|
extend(this.rule.props, {
|
|
104
104
|
model: $handle.formData,
|
|
105
|
-
rules: $handle.validate(),
|
|
105
|
+
// rules: $handle.validate(),
|
|
106
106
|
});
|
|
107
107
|
},
|
|
108
108
|
render(children) {
|
|
@@ -123,7 +123,7 @@ export default {
|
|
|
123
123
|
labelWidth,
|
|
124
124
|
...(rule.wrap || {}),
|
|
125
125
|
prop: ctx.id,
|
|
126
|
-
rules:
|
|
126
|
+
rules: ctx.injectValidate(),
|
|
127
127
|
},
|
|
128
128
|
class: rule.className,
|
|
129
129
|
key: `${uni}fi`,
|