update 设备分组的抽屉

This commit is contained in:
lb
2023-10-09 16:27:44 +08:00
parent 6e390bf12a
commit 907db90e93
5 changed files with 661 additions and 53 deletions

View File

@@ -89,6 +89,8 @@ function findMaxLabelWidth(rows) {
let max = 0;
rows.forEach((row) => {
row.forEach((opt) => {
// debugger;
if (!opt.label) return 0;
if (opt.label.length > max) {
max = opt.label.length;
}