zmdms-webui 3.2.5 → 3.2.6
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.
|
@@ -49,8 +49,9 @@ function useCanvasTableAutoHeight(isAutoScrollY, marginBottom, canvasTableId, da
|
|
|
49
49
|
}
|
|
50
50
|
// 视口模式:根据页面位置计算高度
|
|
51
51
|
// 构建表格选择器
|
|
52
|
+
// canvasTableId 直接赋值给 canvas-table-container 元素本身
|
|
52
53
|
var tableSelector = canvasTableId
|
|
53
|
-
? "#".concat(CSS.escape(canvasTableId)
|
|
54
|
+
? "#".concat(CSS.escape(canvasTableId))
|
|
54
55
|
: ".canvas-table-container";
|
|
55
56
|
var calculateHeight = function () {
|
|
56
57
|
// 查找CanvasTable元素
|