* Finish testtask browse page. the task id #94604.

This commit is contained in:
wangyuting
2023-06-06 09:56:58 +08:00
parent 48c1da97dc
commit 8e2f1633dc
3 changed files with 52 additions and 7 deletions
+6
View File
@@ -14,27 +14,33 @@ $config->testtask->dtable->fieldList['title']['fixed'] = 'left';
$config->testtask->dtable->fieldList['build']['name'] = 'buildName';
$config->testtask->dtable->fieldList['build']['title'] = $lang->testtask->build;
$config->testtask->dtable->fieldList['build']['type'] = 'text';
$config->testtask->dtable->fieldList['build']['group'] = 'text';
$config->testtask->dtable->fieldList['product']['name'] = 'productName';
$config->testtask->dtable->fieldList['product']['title'] = $lang->testtask->product;
$config->testtask->dtable->fieldList['product']['type'] = 'text';
$config->testtask->dtable->fieldList['product']['group'] = 'text';
$config->testtask->dtable->fieldList['execution']['name'] = 'executionName';
$config->testtask->dtable->fieldList['execution']['title'] = $lang->testtask->execution;
$config->testtask->dtable->fieldList['execution']['type'] = 'text';
$config->testtask->dtable->fieldList['execution']['group'] = 'text';
$config->testtask->dtable->fieldList['owner']['name'] = 'owner';
$config->testtask->dtable->fieldList['owner']['title'] = $lang->testtask->owner;
$config->testtask->dtable->fieldList['owner']['type'] = 'user';
$config->testtask->dtable->fieldList['owner']['group'] = 'user';
$config->testtask->dtable->fieldList['owner']['userMap'] = array();
$config->testtask->dtable->fieldList['begin']['name'] = 'begin';
$config->testtask->dtable->fieldList['begin']['title'] = $lang->testtask->begin;
$config->testtask->dtable->fieldList['begin']['type'] = 'date';
$config->testtask->dtable->fieldList['begin']['group'] = 'user';
$config->testtask->dtable->fieldList['end']['name'] = 'end';
$config->testtask->dtable->fieldList['end']['title'] = $lang->testtask->end;
$config->testtask->dtable->fieldList['end']['type'] = 'date';
$config->testtask->dtable->fieldList['end']['group'] = 'user';
$config->testtask->dtable->fieldList['status']['name'] = 'status';
$config->testtask->dtable->fieldList['status']['title'] = $lang->testtask->status;