wkjp-list-page 1.0.47 → 1.0.49
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
|
@@ -165,12 +165,12 @@
|
|
|
165
165
|
:enterable="false"
|
|
166
166
|
>
|
|
167
167
|
<span class="common-list-page__selection-cell" @click.stop>
|
|
168
|
-
<el-checkbox :value="scope.isSelected" disabled></el-checkbox>
|
|
168
|
+
<el-checkbox :value="scope.store.isSelected(scope.row)" disabled></el-checkbox>
|
|
169
169
|
</span>
|
|
170
170
|
</el-tooltip>
|
|
171
171
|
<span v-else class="common-list-page__selection-cell" @click.stop>
|
|
172
172
|
<el-checkbox
|
|
173
|
-
:value="scope.isSelected"
|
|
173
|
+
:value="scope.store.isSelected(scope.row)"
|
|
174
174
|
:disabled="isSelectionRowDisabled(col, scope.row, scope.$index)"
|
|
175
175
|
@input="scope.store.commit('rowSelectedChanged', scope.row)"
|
|
176
176
|
></el-checkbox>
|
|
@@ -289,7 +289,7 @@
|
|
|
289
289
|
class="column-config-panel__switch"
|
|
290
290
|
:value="configColumns[idx]._visible !== false"
|
|
291
291
|
:disabled="isFixedColumn(configColumns[idx])"
|
|
292
|
-
@input="(val) => setColumnVisible(idx, val)"
|
|
292
|
+
@input="(val) => $nextTick(() => setColumnVisible(idx, val))"
|
|
293
293
|
/>
|
|
294
294
|
</li>
|
|
295
295
|
</ul>
|
|
@@ -308,7 +308,7 @@
|
|
|
308
308
|
<span class="column-config-panel__label">{{ columnConfigLabel(configColumns[idx]) }}</span>
|
|
309
309
|
<el-switch
|
|
310
310
|
:value="configColumns[idx]._visible !== false"
|
|
311
|
-
@input="(val) => setColumnVisible(idx, val)"
|
|
311
|
+
@input="(val) => $nextTick(() => setColumnVisible(idx, val))"
|
|
312
312
|
/>
|
|
313
313
|
</li>
|
|
314
314
|
</ul>
|