* Modify style of runCase and case results.

This commit is contained in:
liumengyi
2023-07-25 16:44:19 +08:00
parent 0f2543d8e2
commit e5606810b2
10 changed files with 69 additions and 79 deletions
+6 -5
View File
@@ -1444,11 +1444,12 @@ class testtask extends control
}
if(empty($this->testcase)) $this->app->loadLang('testcase');
$this->view->case = $case;
$this->view->runID = $runID;
$this->view->results = $results;
$this->view->builds = $this->loadModel('build')->getBuildPairs($case->product, $case->branch);
$this->view->users = $this->loadModel('user')->getPairs('noclosed, noletter');
$this->view->case = $case;
$this->view->runID = $runID;
$this->view->results = $results;
$this->view->builds = $this->loadModel('build')->getBuildPairs($case->product, $case->branch);
$this->view->users = $this->loadModel('user')->getPairs('noclosed, noletter');
$this->view->testtasks = $this->testtask->getPairs($case->product);
$this->display();
}