king
2024-10-17 b7dc54a03d7bda841f45f860b68372ba6c0bd9d4
src/tabviews/custom/components/table/edit-table/normalTable/index.jsx
@@ -877,6 +877,9 @@
        }
        if (col.format === 'percent') {
          content = content * 100
          if (!col.round) {
            content = +content.toFixed(2)
          }
        } else if (col.format === 'abs') {
          content = Math.abs(content)
        }
@@ -1207,6 +1210,9 @@
          }
          if (col.format === 'percent') {
            content = content * 100
            if (!col.round) {
              content = +content.toFixed(2)
            }
          } else if (col.format === 'abs') {
            content = Math.abs(content)
          }