3h1-ui 2.9.1 → 2.9.4
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/es/index.js +2 -2
- package/lib/index.js +2 -2
- package/package.json +3 -3
package/es/index.js
CHANGED
|
@@ -14446,7 +14446,7 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
14446
14446
|
const formRef = ref();
|
|
14447
14447
|
const schemasCurrent = reactive([]);
|
|
14448
14448
|
if (props2.schemas.length !== 0)
|
|
14449
|
-
schemasCurrent.push({ field: props2.schemas[0].field });
|
|
14449
|
+
schemasCurrent.push({ field: props2.schemas[0].field, op: "eq" });
|
|
14450
14450
|
const dicColumn = computed(() => {
|
|
14451
14451
|
const temp = [];
|
|
14452
14452
|
props2.schemas.forEach((schama) => {
|
|
@@ -14465,7 +14465,7 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
14465
14465
|
const item = dicColumn.value.find((item2) => {
|
|
14466
14466
|
return item2.disabled === false;
|
|
14467
14467
|
});
|
|
14468
|
-
schemasCurrent.push({ field: (item == null ? void 0 : item.value) || "" });
|
|
14468
|
+
schemasCurrent.push({ field: (item == null ? void 0 : item.value) || "", op: "eq" });
|
|
14469
14469
|
};
|
|
14470
14470
|
const handleMinus = (index2) => {
|
|
14471
14471
|
schemasCurrent.splice(index2, 1);
|
package/lib/index.js
CHANGED
|
@@ -14448,7 +14448,7 @@ const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
|
14448
14448
|
const formRef = vue.ref();
|
|
14449
14449
|
const schemasCurrent = vue.reactive([]);
|
|
14450
14450
|
if (props2.schemas.length !== 0)
|
|
14451
|
-
schemasCurrent.push({ field: props2.schemas[0].field });
|
|
14451
|
+
schemasCurrent.push({ field: props2.schemas[0].field, op: "eq" });
|
|
14452
14452
|
const dicColumn = vue.computed(() => {
|
|
14453
14453
|
const temp = [];
|
|
14454
14454
|
props2.schemas.forEach((schama) => {
|
|
@@ -14467,7 +14467,7 @@ const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
|
14467
14467
|
const item = dicColumn.value.find((item2) => {
|
|
14468
14468
|
return item2.disabled === false;
|
|
14469
14469
|
});
|
|
14470
|
-
schemasCurrent.push({ field: (item == null ? void 0 : item.value) || "" });
|
|
14470
|
+
schemasCurrent.push({ field: (item == null ? void 0 : item.value) || "", op: "eq" });
|
|
14471
14471
|
};
|
|
14472
14472
|
const handleMinus = (index2) => {
|
|
14473
14473
|
schemasCurrent.splice(index2, 1);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "3h1-ui",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"vue-types": "^5.0.2",
|
|
32
32
|
"vxe-table": "^4.3.6",
|
|
33
33
|
"xe-utils": "^3.5.7",
|
|
34
|
-
"@shy-plugins/
|
|
35
|
-
"@shy-plugins/
|
|
34
|
+
"@shy-plugins/utils": "1.0.15",
|
|
35
|
+
"@shy-plugins/use": "1.0.4"
|
|
36
36
|
},
|
|
37
37
|
"types": "es/ui/index.d.ts",
|
|
38
38
|
"devDependencies": {
|