* [task#130230,doing,0.5h] add pri field for testtask list.

This commit is contained in:
tianshujie
2024-10-23 09:18:10 +08:00
committed by 刘刚
parent 085abc8630
commit b5b309fa7a
4 changed files with 20 additions and 0 deletions
+5
View File
@@ -333,6 +333,11 @@ $config->execution->testtask->dtable->fieldList['title']['fixed'] = false;
$config->execution->testtask->dtable->fieldList['title']['width'] = '356';
$config->execution->testtask->dtable->fieldList['title']['data-app'] = 'execution';
$config->execution->testtask->dtable->fieldList['pri']['name'] = 'pri';
$config->execution->testtask->dtable->fieldList['pri']['title'] = $lang->priAB;
$config->execution->testtask->dtable->fieldList['pri']['type'] = 'pri';
$config->execution->testtask->dtable->fieldList['pri']['show'] = true;
$config->execution->testtask->dtable->fieldList['build']['name'] = 'buildName';
$config->execution->testtask->dtable->fieldList['build']['title'] = $lang->testtask->build;
$config->execution->testtask->dtable->fieldList['build']['type'] = 'text';
+5
View File
@@ -897,6 +897,11 @@ $config->my->testtask->dtable->fieldList['title']['fixed'] = 'left';
$config->my->testtask->dtable->fieldList['title']['sortType'] = true;
$config->my->testtask->dtable->fieldList['title']['data-app'] = 'qa';
$config->my->testtask->dtable->fieldList['pri']['name'] = 'pri';
$config->my->testtask->dtable->fieldList['pri']['title'] = $lang->priAB;
$config->my->testtask->dtable->fieldList['pri']['type'] = 'pri';
$config->my->testtask->dtable->fieldList['pri']['show'] = true;
$config->my->testtask->dtable->fieldList['build']['name'] = 'buildName';
$config->my->testtask->dtable->fieldList['build']['title'] = $lang->testtask->build;
$config->my->testtask->dtable->fieldList['build']['type'] = 'text';
+5
View File
@@ -418,6 +418,11 @@ $config->project->dtable->testtask->fieldList['title']['fixed'] = false;
$config->project->dtable->testtask->fieldList['title']['width'] = '356';
$config->project->dtable->testtask->fieldList['title']['data-app'] = 'project';
$config->project->dtable->testtask->fieldList['pri']['name'] = 'pri';
$config->project->dtable->testtask->fieldList['pri']['title'] = $lang->priAB;
$config->project->dtable->testtask->fieldList['pri']['type'] = 'pri';
$config->project->dtable->testtask->fieldList['pri']['show'] = true;
$config->project->dtable->testtask->fieldList['build']['name'] = 'buildName';
$config->project->dtable->testtask->fieldList['build']['title'] = $lang->testtask->build;
$config->project->dtable->testtask->fieldList['build']['type'] = 'text';
+5
View File
@@ -14,6 +14,11 @@ $config->testtask->dtable->fieldList['title']['type'] = 'title';
$config->testtask->dtable->fieldList['title']['link'] = array('module' => 'testtask', 'method' => 'cases', 'params' => 'taskID={id}');
$config->testtask->dtable->fieldList['title']['fixed'] = 'left';
$config->testtask->dtable->fieldList['pri']['name'] = 'pri';
$config->testtask->dtable->fieldList['pri']['title'] = $lang->priAB;
$config->testtask->dtable->fieldList['pri']['type'] = 'pri';
$config->testtask->dtable->fieldList['pri']['show'] = true;
$config->testtask->dtable->fieldList['build']['name'] = 'buildName';
$config->testtask->dtable->fieldList['build']['title'] = $lang->testtask->build;
$config->testtask->dtable->fieldList['build']['type'] = 'text';