meixioacomponent 0.3.45 → 0.3.48
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 +103 -102
- package/lib/meixioacomponent.umd.js +103 -102
- package/lib/meixioacomponent.umd.min.js +11 -11
- package/package.json +1 -1
- package/packages/components/proForm/proForm/pro_form_item.vue +2 -2
- package/packages/components/proPageTable/oa_pro_table.vue +8 -1
package/package.json
CHANGED
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
:selectable="selected"
|
|
87
87
|
></el-table-column>
|
|
88
88
|
<el-table-column
|
|
89
|
-
:key="
|
|
89
|
+
:key="index"
|
|
90
90
|
:align="align"
|
|
91
91
|
sortable="custom"
|
|
92
92
|
:fixed="item.lock"
|
|
@@ -699,6 +699,7 @@ export default {
|
|
|
699
699
|
},
|
|
700
700
|
// 自定义表格的列
|
|
701
701
|
setTableHeaderConfig(configList) {
|
|
702
|
+
console.log(configList)
|
|
702
703
|
let leftFixedList = []
|
|
703
704
|
let rightFixedList = []
|
|
704
705
|
const { tableConfig } = this.$props
|
|
@@ -960,5 +961,11 @@ export default {
|
|
|
960
961
|
box-sizing: border-box;
|
|
961
962
|
padding-top: var(--padding-5);
|
|
962
963
|
}
|
|
964
|
+
|
|
965
|
+
/deep/ .el-table__fixed {
|
|
966
|
+
&::before {
|
|
967
|
+
background-color: transparent !important;
|
|
968
|
+
}
|
|
969
|
+
}
|
|
963
970
|
}
|
|
964
971
|
</style>
|