@form-create/iview 2.5.8 → 2.5.12

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@form-create/iview",
3
- "version": "2.5.8",
3
+ "version": "2.5.12",
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.7",
47
- "@form-create/component-ivu-frame": "^2.5.7",
48
- "@form-create/component-ivu-group": "^2.5.8",
49
- "@form-create/component-ivu-radio": "^2.5.7",
50
- "@form-create/component-ivu-select": "^2.5.7",
51
- "@form-create/component-ivu-tree": "^2.5.7",
52
- "@form-create/component-ivu-upload": "^2.5.7",
53
- "@form-create/component-subform": "^2.5.2",
54
- "@form-create/core": "^2.5.8",
55
- "@form-create/utils": "^2.5.7"
46
+ "@form-create/component-ivu-checkbox": "^2.5.12",
47
+ "@form-create/component-ivu-frame": "^2.5.11",
48
+ "@form-create/component-ivu-group": "^2.5.12",
49
+ "@form-create/component-ivu-radio": "^2.5.12",
50
+ "@form-create/component-ivu-select": "^2.5.12",
51
+ "@form-create/component-ivu-tree": "^2.5.11",
52
+ "@form-create/component-ivu-upload": "^2.5.11",
53
+ "@form-create/component-subform": "^2.5.12",
54
+ "@form-create/core": "^2.5.12",
55
+ "@form-create/utils": "^2.5.11"
56
56
  },
57
57
  "publishConfig": {
58
58
  "access": "public"
@@ -65,5 +65,5 @@
65
65
  "iview": "^3.3.3",
66
66
  "v-jsoneditor": "^1.4.2"
67
67
  },
68
- "gitHead": "38222f131937d6a4bc3552939b9cd832808d5772"
68
+ "gitHead": "cc9121b197e8a06d662407f71b923f8462498c58"
69
69
  }
package/src/core/api.js CHANGED
@@ -21,7 +21,7 @@ export default function extendApi(api, h) {
21
21
  if (!args[0] || !flag) {
22
22
  flag = args;
23
23
  }
24
- callback(...flag);
24
+ callback && callback(...flag);
25
25
  });
26
26
  };
27
27
 
@@ -47,19 +47,19 @@ export default function extendApi(api, h) {
47
47
  }
48
48
  },
49
49
  validateField: (field, callback) => {
50
- if (!h.fieldCtx[field])
51
- return;
52
- const sub = h.subForm[field];
50
+ const ctx = h.getFieldCtx(field);
51
+ if (!ctx) return;
52
+ const sub = h.subForm[ctx.id];
53
53
  let len = 0;
54
54
  let flag;
55
55
  const validate = () => {
56
- h.$manager.validateField(field, (...args) => {
56
+ h.$manager.validateField(ctx.id, (...args) => {
57
57
  if (args[0]) {
58
58
  flag = args;
59
59
  } else if (flag) {
60
- return callback('子表单验证未通过');
60
+ return callback && callback('子表单验证未通过');
61
61
  }
62
- callback(...flag || args);
62
+ callback && callback(...flag || args);
63
63
  });
64
64
  };
65
65
  const validFn = (args) => {
@@ -86,22 +86,24 @@ export default function extendApi(api, h) {
86
86
  clearValidateState(fields, clearSub = true) {
87
87
  api.helper.tidyFields(fields).forEach(field => {
88
88
  if (clearSub) this.clearSubValidateState(field);
89
- const ctx = h.fieldCtx[field];
90
- if (!ctx) return;
91
- h.$manager.clearValidateState(ctx);
89
+ h.getCtxs(field).forEach(ctx => {
90
+ h.$manager.clearValidateState(ctx);
91
+ });
92
92
  });
93
93
  },
94
94
  clearSubValidateState(fields) {
95
95
  api.helper.tidyFields(fields).forEach(field => {
96
- const subForm = h.subForm[field];
97
- if (!subForm) return;
98
- if (Array.isArray(subForm)) {
99
- subForm.forEach(form => {
100
- form.clearValidateState();
101
- })
102
- } else if (subForm) {
103
- subForm.clearValidateState();
104
- }
96
+ h.getCtxs(field).forEach(ctx => {
97
+ const subForm = h.subForm[ctx.id];
98
+ if (!subForm) return;
99
+ if (Array.isArray(subForm)) {
100
+ subForm.forEach(form => {
101
+ form.clearValidateState();
102
+ })
103
+ } else if (subForm) {
104
+ subForm.clearValidateState();
105
+ }
106
+ });
105
107
  })
106
108
  },
107
109
  btn: {
@@ -156,4 +158,4 @@ export default function extendApi(api, h) {
156
158
  });
157
159
 
158
160
  return api;
159
- }
161
+ }
@@ -103,10 +103,9 @@ export default {
103
103
  const {inline, col: _col} = this.rule.props;
104
104
  const item = isFalse(rule.wrap.show) ? children : this.$r(mergeProps([rule.wrap, {
105
105
  props: {
106
- label: rule.title.title,
107
106
  labelWidth,
108
107
  ...(rule.wrap || {}),
109
- prop: ctx.field,
108
+ prop: ctx.id,
110
109
  rules: rule.validate,
111
110
  },
112
111
  class: rule.className,
@@ -117,6 +116,7 @@ export default {
117
116
  return (inline === true || isFalse(_col) || isFalse(col.show)) ? item : this.makeCol(rule, uni, [item]);
118
117
  },
119
118
  isTitle(rule) {
119
+ if (this.options.form.title === false) return false;
120
120
  const title = rule.title;
121
121
  return !((!title.title && !title.native) || isFalse(title.show))
122
122
  },
@@ -5,3 +5,7 @@
5
5
  .form-create .form-create .ivu-form-item .ivu-form-item {
6
6
  margin-bottom: 0px;
7
7
  }
8
+
9
+ .form-create{
10
+ transform: rotateZ(0);
11
+ }