Browse Source

Update oxwindow.class.php

tags/6.3.2
叙述、别离 1 year ago
parent
commit
ab95b95cba
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/system/libraries/oxwindow.class.php

+ 3
- 3
src/system/libraries/oxwindow.class.php View File

@@ -59,7 +59,7 @@ class OxWindow
*/ */
function StartWin() function StartWin()
{ {
$this->myWin .= "<div class='table-responsive'><table class='table table-borderless'>";
$this->myWin .= "<div class='table-responsive'><table class='table table-borderless'><tbody>";
} }
/** /**
* 添加单列标题 * 添加单列标题
@@ -115,9 +115,9 @@ class OxWindow
function CloseWin($isform = true) function CloseWin($isform = true)
{ {
if (!$isform) { if (!$isform) {
$this->myWin .= "</table></div>";
$this->myWin .= "</tbody></table></div>";
} else { } else {
$this->myWin .= "</table></div></form>";
$this->myWin .= "</tbody></table></div></form>";
} }
} }
/** /**


Loading…
Cancel
Save