@lx-frontend/wrap-element-ui 1.0.11-beta.0 → 1.0.11-beta.1
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/package.json
CHANGED
|
@@ -9,13 +9,16 @@
|
|
|
9
9
|
@show="() => emit('popover-show')"
|
|
10
10
|
>
|
|
11
11
|
<template slot="reference">
|
|
12
|
+
<slot
|
|
13
|
+
v-if="column.customColorLabel"
|
|
14
|
+
name="custom"
|
|
15
|
+
/>
|
|
12
16
|
<!-- 筛选中,或排序中,高亮 -->
|
|
13
|
-
<span
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
<span v-else>{{ column.label }}</span>
|
|
17
|
+
<span
|
|
18
|
+
v-else
|
|
19
|
+
:class="['editable-table__sort-reference', headActive && 'editable-table__sort-reference--active']"
|
|
20
|
+
>
|
|
21
|
+
{{ column.label }}
|
|
19
22
|
<div :class="['editable-table__sort-icon', headActive && 'editable-table__sort-icon--active']" />
|
|
20
23
|
</span>
|
|
21
24
|
</template>
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
<!-- 颜色选择列 -->
|
|
100
100
|
<el-table-column
|
|
101
101
|
v-if="colorList && colorList.length > 0"
|
|
102
|
-
|
|
102
|
+
width="22px"
|
|
103
103
|
class-name="editable-table__color-column no-inner-cell-border"
|
|
104
104
|
:fixed="leftFixedColumnCount > 0 ? 'left' : false"
|
|
105
105
|
:filtered-value="filteredValue[colorFilterConfig?.prop]"
|