From 06f2c072dd1840e066e24c45384c8da0aa99ac2c Mon Sep 17 00:00:00 2001 From: zhouxin Date: Tue, 2 Jan 2024 16:45:49 +0800 Subject: [PATCH] * Remove default value of table option in screen. --- module/screen/model.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/module/screen/model.php b/module/screen/model.php index 1e7968d9da..fb80ac42e9 100644 --- a/module/screen/model.php +++ b/module/screen/model.php @@ -1691,12 +1691,6 @@ class screenModel extends model if($metric->scope != 'system') $tableOption->objectPairs = $this->loadModel('metric')->getPairsByScope($metric->scope); $tableOption->scope = $metric->scope; - $tableOption->oddBGC = '#173250FF'; - $tableOption->evenBGC = '#0B1727FF'; - $tableOption->borderBGC = '#285A8EFF'; - $tableOption->rowNum = 5; - $tableOption->colNum = 6; - $tableOption->borderSpacing = 1; return $tableOption; }