agilebuilder-ui 1.1.13-tmp4 → 1.1.13-tmp6
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/{401-e6404818.js → 401-b72ce8b6.js} +1 -1
- package/lib/{404-3556013d.js → 404-3aabf44b.js} +1 -1
- package/lib/{iframe-page-1d95c5c4.js → iframe-page-2bd8a200.js} +1 -1
- package/lib/{index-1a87600f.js → index-c03eac61.js} +15904 -15888
- package/lib/super-ui.css +1 -1
- package/lib/super-ui.js +1 -1
- package/lib/super-ui.umd.cjs +81 -81
- package/lib/{tab-content-iframe-index-728fe039.js → tab-content-iframe-index-fc7d9146.js} +1 -1
- package/lib/{tab-content-index-5481253a.js → tab-content-index-552e53a1.js} +1 -1
- package/lib/{tache-subprocess-history-051a2d26.js → tache-subprocess-history-3ef2a115.js} +1 -1
- package/package.json +1 -1
- package/packages/super-grid/src/apis.js +46 -3
- package/packages/super-grid/src/components/mobile-table-card.jsx +463 -426
- package/packages/super-grid/src/super-grid.vue +7 -1
- package/packages/super-grid/src/utils.js +1 -1
- package/pnpm-lock.yaml +3467 -0
- package/src/components/Card/index.jsx +155 -146
- package/src/components/Scrollbar/index.vue +196 -196
- package/src/mixins/resizeMixin.js +48 -48
- package/src/styles/display-layout.scss +11 -0
- package/src/utils/guid.js +13 -13
|
@@ -39,6 +39,7 @@
|
|
|
39
39
|
v-if="isShowCard"
|
|
40
40
|
:selection="selectionTableData"
|
|
41
41
|
:columns="visibleColumns"
|
|
42
|
+
:listCode="code"
|
|
42
43
|
:getColumnComponentData="getColumnComponentData"
|
|
43
44
|
:data="tableDatas"
|
|
44
45
|
v-model:current-page="currentPage"
|
|
@@ -70,7 +71,7 @@
|
|
|
70
71
|
:highlight-current-row="true"
|
|
71
72
|
:span-method="rowSpan"
|
|
72
73
|
:max-height="maxHeight"
|
|
73
|
-
:height="
|
|
74
|
+
:height="tableHeight"
|
|
74
75
|
:class="tableClass"
|
|
75
76
|
:tree-props="getTreeProps(parentProp, isSql, isLazy, dataSourceType)"
|
|
76
77
|
@sort-change="handleSortChange"
|
|
@@ -3314,4 +3315,9 @@ export default {
|
|
|
3314
3315
|
padding: 2px 0 !important;
|
|
3315
3316
|
}
|
|
3316
3317
|
}
|
|
3318
|
+
.el-table ::v-deep {
|
|
3319
|
+
& > .el-table__inner-wrapper {
|
|
3320
|
+
height: 100% !important;
|
|
3321
|
+
}
|
|
3322
|
+
}
|
|
3317
3323
|
</style>
|
|
@@ -564,7 +564,7 @@ export function getTableHeight(superGrid, listCode, pageHeight) {
|
|
|
564
564
|
if (superGrid) {
|
|
565
565
|
rect = superGrid.$el.getBoundingClientRect()
|
|
566
566
|
}
|
|
567
|
-
const totalHeight = window.innerHeight - rect
|
|
567
|
+
const totalHeight = window.innerHeight - (rect?.y ?? 0) - 110
|
|
568
568
|
console.log('rect=', rect, 'window.innerHeight=', window.innerHeight, 'totalHeight=', totalHeight)
|
|
569
569
|
return totalHeight
|
|
570
570
|
|