meixioacomponent 0.2.58 → 0.2.59
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/meixioacomponent.common.js +54 -52
- package/lib/meixioacomponent.umd.js +54 -52
- package/lib/meixioacomponent.umd.min.js +7 -7
- package/lib/style/element/index.css +1 -1
- package/package.json +1 -1
- package/packages/components/proForm/dialogForm/baseDialogForm.vue +2 -1
- package/packages/components/style/element/index.css +1 -1
|
@@ -5170,7 +5170,7 @@
|
|
|
5170
5170
|
z-index: -1;
|
|
5171
5171
|
}
|
|
5172
5172
|
.el-radio-button__orig-radio:checked + .el-radio-button__inner {
|
|
5173
|
-
color: var(--text-
|
|
5173
|
+
color: var(--text-white);
|
|
5174
5174
|
background-color: var(--color-primary);
|
|
5175
5175
|
border-color: var(--color-primary);
|
|
5176
5176
|
-webkit-box-shadow: -1px 0 0 0 var(--color-primary);
|
package/package.json
CHANGED
|
@@ -211,7 +211,8 @@ export default {
|
|
|
211
211
|
let obj = {};
|
|
212
212
|
for (let i = 0; i < this.module.length; i++) {
|
|
213
213
|
let result = this.$refs.proFormVue[i].returnFormValue();
|
|
214
|
-
obj[`${this.module[i].key}`] = result;
|
|
214
|
+
// obj[`${this.module[i].key}`] = result;
|
|
215
|
+
obj = { ...obj, ...result };
|
|
215
216
|
}
|
|
216
217
|
return obj;
|
|
217
218
|
},
|
|
@@ -5170,7 +5170,7 @@
|
|
|
5170
5170
|
z-index: -1;
|
|
5171
5171
|
}
|
|
5172
5172
|
.el-radio-button__orig-radio:checked + .el-radio-button__inner {
|
|
5173
|
-
color: var(--text-
|
|
5173
|
+
color: var(--text-white);
|
|
5174
5174
|
background-color: var(--color-primary);
|
|
5175
5175
|
border-color: var(--color-primary);
|
|
5176
5176
|
-webkit-box-shadow: -1px 0 0 0 var(--color-primary);
|