general-basic-form 1.0.24 → 1.0.25
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/README.md +5 -2
- package/package.json +1 -1
- package/src/GeneralBasicForm.vue +1 -0
package/README.md
CHANGED
|
@@ -40,10 +40,12 @@
|
|
|
40
40
|
|
|
41
41
|
表单数据校验需要拿到内部表单的ref
|
|
42
42
|
|
|
43
|
-
this.$refs["generalBasicForm"].$["queryFormRef"]
|
|
43
|
+
this.$refs["generalBasicForm"].$refs["queryFormRef"]
|
|
44
44
|
.validate(
|
|
45
45
|
async (valid) => {
|
|
46
|
-
if (valid) {
|
|
46
|
+
if (valid) {
|
|
47
|
+
console.log(this.$refs["generalBasicForm"]["queryParams"]);
|
|
48
|
+
}
|
|
47
49
|
}
|
|
48
50
|
);
|
|
49
51
|
|
|
@@ -79,6 +81,7 @@
|
|
|
79
81
|
label: "二次工艺",
|
|
80
82
|
prop: "spName",
|
|
81
83
|
type: "select",
|
|
84
|
+
multiple:true, //多选
|
|
82
85
|
option: [
|
|
83
86
|
{ value: "3", desc: "满印" },
|
|
84
87
|
{ value: "1", desc: "区域印花" },
|
package/package.json
CHANGED