huangbin 4 yıl önce
ebeveyn
işleme
dd907b01da
1 değiştirilmiş dosya ile 8 ekleme ve 4 silme
  1. 8 4
      src/common/setup/table/clolumn.ts

+ 8 - 4
src/common/setup/table/clolumn.ts

@@ -48,11 +48,15 @@ export function getTableColumns() {
             if (columnwidth && columnwidth !== '0') {
                 item.width = +columnwidth
             } else {
-                const len = columntitle.length
-                if (len > 4) {
-                    item.width = 120 + 10 * (len - 4)
+                if (columntitle.includes('时间') || columntitle.includes('编号')) {
+                    item.width = 200
                 } else {
-                    item.width = 120 // 默认120
+                    const len = columntitle.length
+                    if (len > 4) {
+                        item.width = 120 + 10 * (len - 4)
+                    } else {
+                        item.width = 120 // 默认120
+                    }
                 }
             }