lw-cdp-ui 1.0.13 → 1.0.14
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/dist/components/lwTable/index.js +2 -2
- package/dist/components/lwTable/index.vue +2 -3
- package/dist/lw-cdp-ui.esm.js +369 -370
- package/dist/lw-cdp-ui.esm.js.map +1 -1
- package/dist/lw-cdp-ui.umd.js +1 -1
- package/dist/lw-cdp-ui.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -30,7 +30,7 @@ export default {
|
|
|
30
30
|
rowSelection: { type: Object },
|
|
31
31
|
selectedKeys: { type: Array },
|
|
32
32
|
selectDatas: { type: Array },
|
|
33
|
-
hideTool: { type: Boolean, default:
|
|
33
|
+
hideTool: { type: Boolean, default: true },
|
|
34
34
|
virtualListProps: { type: Object, default: undefined },
|
|
35
35
|
draggable: { type: Object },
|
|
36
36
|
maxHeight: { type: String }
|
|
@@ -61,7 +61,7 @@ export default {
|
|
|
61
61
|
allCheck: true,
|
|
62
62
|
lastColumsFixed: true,
|
|
63
63
|
tableHeaders: [],
|
|
64
|
-
fixNum:
|
|
64
|
+
fixNum: 0
|
|
65
65
|
})
|
|
66
66
|
|
|
67
67
|
onBeforeMount(async () => {
|
|
@@ -291,7 +291,7 @@
|
|
|
291
291
|
</div> -->
|
|
292
292
|
|
|
293
293
|
<div class="tool-block"
|
|
294
|
-
v-if="hideTool">
|
|
294
|
+
v-if="!hideTool">
|
|
295
295
|
<el-tooltip :content="$t('btn.refresh')">
|
|
296
296
|
<el-icon size="20"
|
|
297
297
|
@click="refresh"><el-icon-refresh></el-icon-refresh></el-icon>
|
|
@@ -326,7 +326,6 @@
|
|
|
326
326
|
</template>
|
|
327
327
|
|
|
328
328
|
<el-checkbox v-model="allCheck"
|
|
329
|
-
:indeterminate="isIndeterminate"
|
|
330
329
|
@change="checkAll">
|
|
331
330
|
{{ $t('lwTable.tools.allCheck') }},{{ $t('lwTable.tools.hasChecked') }}{{ checkedKeys.length }}/{{ treeData.length }}
|
|
332
331
|
</el-checkbox>
|
|
@@ -363,7 +362,7 @@
|
|
|
363
362
|
</el-tooltip>
|
|
364
363
|
</div>
|
|
365
364
|
<el-pagination background
|
|
366
|
-
|
|
365
|
+
size="small"
|
|
367
366
|
:current-page.sync="parseFloat(searchParams.page).toString() == 'NaN' ? 1 : searchParams.page"
|
|
368
367
|
:page-size="searchParams.size ? searchParams.size : 10"
|
|
369
368
|
layout="total, prev, pager, next, sizes, jumper"
|