@panpanzhao/component-ui 0.0.36 → 0.0.38
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/component-ui.common.js +30 -8
- package/lib/components/crud.js +15 -4
- package/lib/components/form-dialog.js +15 -4
- package/lib/components/form-drawer.js +15 -4
- package/lib/components/form-group.js +15 -4
- package/lib/components/form-input.js +12 -1
- package/lib/components/form.js +15 -4
- package/lib/components/table-operate.js +15 -4
- package/lib/index.js +1 -1
- package/package.json +1 -1
|
@@ -481,8 +481,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
481
481
|
// EXPORTS
|
|
482
482
|
__webpack_require__.d(__webpack_exports__, "API", function() { return /* binding */ API; });
|
|
483
483
|
|
|
484
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./src/components/form/src/form.vue?vue&type=template&id=
|
|
485
|
-
var
|
|
484
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./src/components/form/src/form.vue?vue&type=template&id=097bf622&
|
|
485
|
+
var formvue_type_template_id_097bf622_render = function render() {
|
|
486
486
|
var _vm = this,
|
|
487
487
|
_c = _vm._self._c
|
|
488
488
|
return _c(
|
|
@@ -549,10 +549,10 @@ var formvue_type_template_id_331ea9a7_render = function render() {
|
|
|
549
549
|
)
|
|
550
550
|
}
|
|
551
551
|
var staticRenderFns = []
|
|
552
|
-
|
|
552
|
+
formvue_type_template_id_097bf622_render._withStripped = true
|
|
553
553
|
|
|
554
554
|
|
|
555
|
-
// CONCATENATED MODULE: ./src/components/form/src/form.vue?vue&type=template&id=
|
|
555
|
+
// CONCATENATED MODULE: ./src/components/form/src/form.vue?vue&type=template&id=097bf622&
|
|
556
556
|
|
|
557
557
|
// EXTERNAL MODULE: external "element-ui/lib/form"
|
|
558
558
|
var form_ = __webpack_require__(16);
|
|
@@ -628,7 +628,8 @@ var external_lodash_ = __webpack_require__(1);
|
|
|
628
628
|
return {};
|
|
629
629
|
}
|
|
630
630
|
},
|
|
631
|
-
request: Function
|
|
631
|
+
request: Function,
|
|
632
|
+
verify: Function
|
|
632
633
|
},
|
|
633
634
|
computed: {
|
|
634
635
|
formProps: function formProps() {
|
|
@@ -719,7 +720,17 @@ var external_lodash_ = __webpack_require__(1);
|
|
|
719
720
|
},
|
|
720
721
|
methods: {
|
|
721
722
|
validate: function validate(callback) {
|
|
722
|
-
|
|
723
|
+
var _this3 = this;
|
|
724
|
+
var _callback = null;
|
|
725
|
+
if (callback) {
|
|
726
|
+
_callback = function _callback(flag, message) {
|
|
727
|
+
callback.call(_this3, flag, message);
|
|
728
|
+
if (typeof _this3.verify === "function") {
|
|
729
|
+
_this3.verify.call(_this3, flag, message);
|
|
730
|
+
}
|
|
731
|
+
};
|
|
732
|
+
}
|
|
733
|
+
return this.$refs.form.validate(_callback);
|
|
723
734
|
},
|
|
724
735
|
validateField: function validateField(props, callback) {
|
|
725
736
|
return this.$refs.form.validateField(props, callback);
|
|
@@ -860,7 +871,7 @@ function normalizeComponent(
|
|
|
860
871
|
|
|
861
872
|
var component = normalizeComponent(
|
|
862
873
|
src_formvue_type_script_lang_js_,
|
|
863
|
-
|
|
874
|
+
formvue_type_template_id_097bf622_render,
|
|
864
875
|
staticRenderFns,
|
|
865
876
|
false,
|
|
866
877
|
null,
|
|
@@ -2258,13 +2269,24 @@ var date_picker_default = /*#__PURE__*/__webpack_require__.n(date_picker_);
|
|
|
2258
2269
|
elDatePicker: date_picker_default.a
|
|
2259
2270
|
},
|
|
2260
2271
|
props: {
|
|
2272
|
+
value: {
|
|
2273
|
+
type: [String, Number, Array]
|
|
2274
|
+
},
|
|
2261
2275
|
startProp: String,
|
|
2262
2276
|
endProp: String
|
|
2263
2277
|
},
|
|
2278
|
+
watch: {
|
|
2279
|
+
value: function value(val) {
|
|
2280
|
+
if (["monthrange", "daterange", "datetimerange"].indexOf(this.$attrs.type) > -1 && this.startProp && this.endProp && this._form && !val) {
|
|
2281
|
+
this._form.formModel[this.startProp] = null;
|
|
2282
|
+
this._form.formModel[this.endProp] = null;
|
|
2283
|
+
}
|
|
2284
|
+
}
|
|
2285
|
+
},
|
|
2264
2286
|
computed: {
|
|
2265
2287
|
attrs: function attrs() {
|
|
2266
2288
|
//值处理
|
|
2267
|
-
var _value = this
|
|
2289
|
+
var _value = this.value;
|
|
2268
2290
|
if (["monthrange", "daterange", "datetimerange"].indexOf(this.$attrs.type) > -1 && this.startProp && this.endProp && this._form && !_value) {
|
|
2269
2291
|
var startPropValue = this._form.formModel[this.startProp];
|
|
2270
2292
|
var endPropValue = this._form.formModel[this.endProp];
|
package/lib/components/crud.js
CHANGED
|
@@ -215,7 +215,7 @@ module.exports = require("@panpanzhao/component-ui/lib/utils/formula");
|
|
|
215
215
|
// ESM COMPAT FLAG
|
|
216
216
|
__webpack_require__.r(__webpack_exports__);
|
|
217
217
|
|
|
218
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./src/components/form/src/form.vue?vue&type=template&id=
|
|
218
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./src/components/form/src/form.vue?vue&type=template&id=097bf622&
|
|
219
219
|
var render = function render() {
|
|
220
220
|
var _vm = this,
|
|
221
221
|
_c = _vm._self._c
|
|
@@ -286,7 +286,7 @@ var staticRenderFns = []
|
|
|
286
286
|
render._withStripped = true
|
|
287
287
|
|
|
288
288
|
|
|
289
|
-
// CONCATENATED MODULE: ./src/components/form/src/form.vue?vue&type=template&id=
|
|
289
|
+
// CONCATENATED MODULE: ./src/components/form/src/form.vue?vue&type=template&id=097bf622&
|
|
290
290
|
|
|
291
291
|
// EXTERNAL MODULE: external "element-ui/lib/form"
|
|
292
292
|
var form_ = __webpack_require__(13);
|
|
@@ -362,7 +362,8 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
362
362
|
return {};
|
|
363
363
|
}
|
|
364
364
|
},
|
|
365
|
-
request: Function
|
|
365
|
+
request: Function,
|
|
366
|
+
verify: Function
|
|
366
367
|
},
|
|
367
368
|
computed: {
|
|
368
369
|
formProps: function formProps() {
|
|
@@ -453,7 +454,17 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
453
454
|
},
|
|
454
455
|
methods: {
|
|
455
456
|
validate: function validate(callback) {
|
|
456
|
-
|
|
457
|
+
var _this3 = this;
|
|
458
|
+
var _callback = null;
|
|
459
|
+
if (callback) {
|
|
460
|
+
_callback = function _callback(flag, message) {
|
|
461
|
+
callback.call(_this3, flag, message);
|
|
462
|
+
if (typeof _this3.verify === "function") {
|
|
463
|
+
_this3.verify.call(_this3, flag, message);
|
|
464
|
+
}
|
|
465
|
+
};
|
|
466
|
+
}
|
|
467
|
+
return this.$refs.form.validate(_callback);
|
|
457
468
|
},
|
|
458
469
|
validateField: function validateField(props, callback) {
|
|
459
470
|
return this.$refs.form.validateField(props, callback);
|
|
@@ -215,7 +215,7 @@ module.exports = require("@panpanzhao/component-ui/lib/utils/formula");
|
|
|
215
215
|
// ESM COMPAT FLAG
|
|
216
216
|
__webpack_require__.r(__webpack_exports__);
|
|
217
217
|
|
|
218
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./src/components/form/src/form.vue?vue&type=template&id=
|
|
218
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./src/components/form/src/form.vue?vue&type=template&id=097bf622&
|
|
219
219
|
var render = function render() {
|
|
220
220
|
var _vm = this,
|
|
221
221
|
_c = _vm._self._c
|
|
@@ -286,7 +286,7 @@ var staticRenderFns = []
|
|
|
286
286
|
render._withStripped = true
|
|
287
287
|
|
|
288
288
|
|
|
289
|
-
// CONCATENATED MODULE: ./src/components/form/src/form.vue?vue&type=template&id=
|
|
289
|
+
// CONCATENATED MODULE: ./src/components/form/src/form.vue?vue&type=template&id=097bf622&
|
|
290
290
|
|
|
291
291
|
// EXTERNAL MODULE: external "element-ui/lib/form"
|
|
292
292
|
var form_ = __webpack_require__(13);
|
|
@@ -362,7 +362,8 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
362
362
|
return {};
|
|
363
363
|
}
|
|
364
364
|
},
|
|
365
|
-
request: Function
|
|
365
|
+
request: Function,
|
|
366
|
+
verify: Function
|
|
366
367
|
},
|
|
367
368
|
computed: {
|
|
368
369
|
formProps: function formProps() {
|
|
@@ -453,7 +454,17 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
453
454
|
},
|
|
454
455
|
methods: {
|
|
455
456
|
validate: function validate(callback) {
|
|
456
|
-
|
|
457
|
+
var _this3 = this;
|
|
458
|
+
var _callback = null;
|
|
459
|
+
if (callback) {
|
|
460
|
+
_callback = function _callback(flag, message) {
|
|
461
|
+
callback.call(_this3, flag, message);
|
|
462
|
+
if (typeof _this3.verify === "function") {
|
|
463
|
+
_this3.verify.call(_this3, flag, message);
|
|
464
|
+
}
|
|
465
|
+
};
|
|
466
|
+
}
|
|
467
|
+
return this.$refs.form.validate(_callback);
|
|
457
468
|
},
|
|
458
469
|
validateField: function validateField(props, callback) {
|
|
459
470
|
return this.$refs.form.validateField(props, callback);
|
|
@@ -616,7 +616,7 @@ module.exports = require("@panpanzhao/component-ui/lib/components/drawer");
|
|
|
616
616
|
// ESM COMPAT FLAG
|
|
617
617
|
__webpack_require__.r(__webpack_exports__);
|
|
618
618
|
|
|
619
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./src/components/form/src/form.vue?vue&type=template&id=
|
|
619
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./src/components/form/src/form.vue?vue&type=template&id=097bf622&
|
|
620
620
|
var render = function render() {
|
|
621
621
|
var _vm = this,
|
|
622
622
|
_c = _vm._self._c
|
|
@@ -687,7 +687,7 @@ var staticRenderFns = []
|
|
|
687
687
|
render._withStripped = true
|
|
688
688
|
|
|
689
689
|
|
|
690
|
-
// CONCATENATED MODULE: ./src/components/form/src/form.vue?vue&type=template&id=
|
|
690
|
+
// CONCATENATED MODULE: ./src/components/form/src/form.vue?vue&type=template&id=097bf622&
|
|
691
691
|
|
|
692
692
|
// EXTERNAL MODULE: external "element-ui/lib/form"
|
|
693
693
|
var form_ = __webpack_require__(13);
|
|
@@ -763,7 +763,8 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
763
763
|
return {};
|
|
764
764
|
}
|
|
765
765
|
},
|
|
766
|
-
request: Function
|
|
766
|
+
request: Function,
|
|
767
|
+
verify: Function
|
|
767
768
|
},
|
|
768
769
|
computed: {
|
|
769
770
|
formProps: function formProps() {
|
|
@@ -854,7 +855,17 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
854
855
|
},
|
|
855
856
|
methods: {
|
|
856
857
|
validate: function validate(callback) {
|
|
857
|
-
|
|
858
|
+
var _this3 = this;
|
|
859
|
+
var _callback = null;
|
|
860
|
+
if (callback) {
|
|
861
|
+
_callback = function _callback(flag, message) {
|
|
862
|
+
callback.call(_this3, flag, message);
|
|
863
|
+
if (typeof _this3.verify === "function") {
|
|
864
|
+
_this3.verify.call(_this3, flag, message);
|
|
865
|
+
}
|
|
866
|
+
};
|
|
867
|
+
}
|
|
868
|
+
return this.$refs.form.validate(_callback);
|
|
858
869
|
},
|
|
859
870
|
validateField: function validateField(props, callback) {
|
|
860
871
|
return this.$refs.form.validateField(props, callback);
|
|
@@ -215,7 +215,7 @@ module.exports = require("@panpanzhao/component-ui/lib/utils/formula");
|
|
|
215
215
|
// ESM COMPAT FLAG
|
|
216
216
|
__webpack_require__.r(__webpack_exports__);
|
|
217
217
|
|
|
218
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./src/components/form/src/form.vue?vue&type=template&id=
|
|
218
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./src/components/form/src/form.vue?vue&type=template&id=097bf622&
|
|
219
219
|
var render = function render() {
|
|
220
220
|
var _vm = this,
|
|
221
221
|
_c = _vm._self._c
|
|
@@ -286,7 +286,7 @@ var staticRenderFns = []
|
|
|
286
286
|
render._withStripped = true
|
|
287
287
|
|
|
288
288
|
|
|
289
|
-
// CONCATENATED MODULE: ./src/components/form/src/form.vue?vue&type=template&id=
|
|
289
|
+
// CONCATENATED MODULE: ./src/components/form/src/form.vue?vue&type=template&id=097bf622&
|
|
290
290
|
|
|
291
291
|
// EXTERNAL MODULE: external "element-ui/lib/form"
|
|
292
292
|
var form_ = __webpack_require__(13);
|
|
@@ -362,7 +362,8 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
362
362
|
return {};
|
|
363
363
|
}
|
|
364
364
|
},
|
|
365
|
-
request: Function
|
|
365
|
+
request: Function,
|
|
366
|
+
verify: Function
|
|
366
367
|
},
|
|
367
368
|
computed: {
|
|
368
369
|
formProps: function formProps() {
|
|
@@ -453,7 +454,17 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
453
454
|
},
|
|
454
455
|
methods: {
|
|
455
456
|
validate: function validate(callback) {
|
|
456
|
-
|
|
457
|
+
var _this3 = this;
|
|
458
|
+
var _callback = null;
|
|
459
|
+
if (callback) {
|
|
460
|
+
_callback = function _callback(flag, message) {
|
|
461
|
+
callback.call(_this3, flag, message);
|
|
462
|
+
if (typeof _this3.verify === "function") {
|
|
463
|
+
_this3.verify.call(_this3, flag, message);
|
|
464
|
+
}
|
|
465
|
+
};
|
|
466
|
+
}
|
|
467
|
+
return this.$refs.form.validate(_callback);
|
|
457
468
|
},
|
|
458
469
|
validateField: function validateField(props, callback) {
|
|
459
470
|
return this.$refs.form.validateField(props, callback);
|
|
@@ -1762,13 +1762,24 @@ var date_picker_default = /*#__PURE__*/__webpack_require__.n(date_picker_);
|
|
|
1762
1762
|
elDatePicker: date_picker_default.a
|
|
1763
1763
|
},
|
|
1764
1764
|
props: {
|
|
1765
|
+
value: {
|
|
1766
|
+
type: [String, Number, Array]
|
|
1767
|
+
},
|
|
1765
1768
|
startProp: String,
|
|
1766
1769
|
endProp: String
|
|
1767
1770
|
},
|
|
1771
|
+
watch: {
|
|
1772
|
+
value: function value(val) {
|
|
1773
|
+
if (["monthrange", "daterange", "datetimerange"].indexOf(this.$attrs.type) > -1 && this.startProp && this.endProp && this._form && !val) {
|
|
1774
|
+
this._form.formModel[this.startProp] = null;
|
|
1775
|
+
this._form.formModel[this.endProp] = null;
|
|
1776
|
+
}
|
|
1777
|
+
}
|
|
1778
|
+
},
|
|
1768
1779
|
computed: {
|
|
1769
1780
|
attrs: function attrs() {
|
|
1770
1781
|
//值处理
|
|
1771
|
-
var _value = this
|
|
1782
|
+
var _value = this.value;
|
|
1772
1783
|
if (["monthrange", "daterange", "datetimerange"].indexOf(this.$attrs.type) > -1 && this.startProp && this.endProp && this._form && !_value) {
|
|
1773
1784
|
var startPropValue = this._form.formModel[this.startProp];
|
|
1774
1785
|
var endPropValue = this._form.formModel[this.endProp];
|
package/lib/components/form.js
CHANGED
|
@@ -210,7 +210,7 @@ module.exports = require("@panpanzhao/component-ui/lib/utils/formula");
|
|
|
210
210
|
// ESM COMPAT FLAG
|
|
211
211
|
__webpack_require__.r(__webpack_exports__);
|
|
212
212
|
|
|
213
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./src/components/form/src/form.vue?vue&type=template&id=
|
|
213
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./src/components/form/src/form.vue?vue&type=template&id=097bf622&
|
|
214
214
|
var render = function render() {
|
|
215
215
|
var _vm = this,
|
|
216
216
|
_c = _vm._self._c
|
|
@@ -281,7 +281,7 @@ var staticRenderFns = []
|
|
|
281
281
|
render._withStripped = true
|
|
282
282
|
|
|
283
283
|
|
|
284
|
-
// CONCATENATED MODULE: ./src/components/form/src/form.vue?vue&type=template&id=
|
|
284
|
+
// CONCATENATED MODULE: ./src/components/form/src/form.vue?vue&type=template&id=097bf622&
|
|
285
285
|
|
|
286
286
|
// EXTERNAL MODULE: external "element-ui/lib/form"
|
|
287
287
|
var form_ = __webpack_require__(13);
|
|
@@ -357,7 +357,8 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
357
357
|
return {};
|
|
358
358
|
}
|
|
359
359
|
},
|
|
360
|
-
request: Function
|
|
360
|
+
request: Function,
|
|
361
|
+
verify: Function
|
|
361
362
|
},
|
|
362
363
|
computed: {
|
|
363
364
|
formProps: function formProps() {
|
|
@@ -448,7 +449,17 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
448
449
|
},
|
|
449
450
|
methods: {
|
|
450
451
|
validate: function validate(callback) {
|
|
451
|
-
|
|
452
|
+
var _this3 = this;
|
|
453
|
+
var _callback = null;
|
|
454
|
+
if (callback) {
|
|
455
|
+
_callback = function _callback(flag, message) {
|
|
456
|
+
callback.call(_this3, flag, message);
|
|
457
|
+
if (typeof _this3.verify === "function") {
|
|
458
|
+
_this3.verify.call(_this3, flag, message);
|
|
459
|
+
}
|
|
460
|
+
};
|
|
461
|
+
}
|
|
462
|
+
return this.$refs.form.validate(_callback);
|
|
452
463
|
},
|
|
453
464
|
validateField: function validateField(props, callback) {
|
|
454
465
|
return this.$refs.form.validateField(props, callback);
|
|
@@ -215,7 +215,7 @@ module.exports = require("@panpanzhao/component-ui/lib/utils/formula");
|
|
|
215
215
|
// ESM COMPAT FLAG
|
|
216
216
|
__webpack_require__.r(__webpack_exports__);
|
|
217
217
|
|
|
218
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./src/components/form/src/form.vue?vue&type=template&id=
|
|
218
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./src/components/form/src/form.vue?vue&type=template&id=097bf622&
|
|
219
219
|
var render = function render() {
|
|
220
220
|
var _vm = this,
|
|
221
221
|
_c = _vm._self._c
|
|
@@ -286,7 +286,7 @@ var staticRenderFns = []
|
|
|
286
286
|
render._withStripped = true
|
|
287
287
|
|
|
288
288
|
|
|
289
|
-
// CONCATENATED MODULE: ./src/components/form/src/form.vue?vue&type=template&id=
|
|
289
|
+
// CONCATENATED MODULE: ./src/components/form/src/form.vue?vue&type=template&id=097bf622&
|
|
290
290
|
|
|
291
291
|
// EXTERNAL MODULE: external "element-ui/lib/form"
|
|
292
292
|
var form_ = __webpack_require__(13);
|
|
@@ -362,7 +362,8 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
362
362
|
return {};
|
|
363
363
|
}
|
|
364
364
|
},
|
|
365
|
-
request: Function
|
|
365
|
+
request: Function,
|
|
366
|
+
verify: Function
|
|
366
367
|
},
|
|
367
368
|
computed: {
|
|
368
369
|
formProps: function formProps() {
|
|
@@ -453,7 +454,17 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
453
454
|
},
|
|
454
455
|
methods: {
|
|
455
456
|
validate: function validate(callback) {
|
|
456
|
-
|
|
457
|
+
var _this3 = this;
|
|
458
|
+
var _callback = null;
|
|
459
|
+
if (callback) {
|
|
460
|
+
_callback = function _callback(flag, message) {
|
|
461
|
+
callback.call(_this3, flag, message);
|
|
462
|
+
if (typeof _this3.verify === "function") {
|
|
463
|
+
_this3.verify.call(_this3, flag, message);
|
|
464
|
+
}
|
|
465
|
+
};
|
|
466
|
+
}
|
|
467
|
+
return this.$refs.form.validate(_callback);
|
|
457
468
|
},
|
|
458
469
|
validateField: function validateField(props, callback) {
|
|
459
470
|
return this.$refs.form.validateField(props, callback);
|