This commit is contained in:
tanghucheng
2022-10-27 13:35:31 +08:00
parent 122a34b4a5
commit 1ca5456053
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -4651,7 +4651,7 @@ class executionModel extends model
}
}
}
if(!empty($execution->division)) echo "<td class='text-center' title='{$execution->productName}'>{$execution->productName}</td>";
if(!empty($execution->division)) echo "<td class='text-left' title='{$execution->productName}'>{$execution->productName}</td>";
echo "<td class='status-{$execution->status} text-center'>" . zget($this->lang->project->statusList, $execution->status) . '</td>';
echo '<td>' . zget($users, $execution->PM) . '</td>';
echo helper::isZeroDate($execution->begin) ? '<td class="c-date"></td>' : '<td class="c-date">' . $execution->begin . '</td>';
+1
View File
@@ -16,3 +16,4 @@ td.flex {display: flex; flex-flow: row nowrap; justify-content: flex-start; alig
td.c-name > .project-type-label {flex: 0 0 36px; padding-right: 2px;}
.c-name > a, .table-children .text-left > a, .c-name > span.text-ellipsis { padding-left: 5px; text-overflow: clip;}
span.table-nest-icon.table-nest-toggle {min-width: 22px; max-width: 22px;}
#projectForm .c-name, #executionTableList .c-name, #programTableList .c-name {padding-right:47px;}
+1 -1
View File
@@ -85,7 +85,7 @@
<?php endif;?>
</div>
</th>
<?php if($project->division) echo "<th class='text-center'>{$lang->project->product}</th>";?>
<?php if($project->division) echo "<th class='text-left c-product'>{$lang->project->product}</th>";?>
<th class='c-status text-center'><?php echo $lang->project->status;?></th>
<th class='c-user'><?php echo $lang->execution->owner;?></th>
<th class='c-date'><?php echo $lang->programplan->begin;?></th>