* Adjust style.

This commit is contained in:
leiyong
2020-11-13 13:04:17 +08:00
parent 3a00d645ec
commit 32b1adc195
4 changed files with 4 additions and 5 deletions

View File

@@ -51,7 +51,7 @@
<?php printf('%03d', $project->id);?>
</td>
<td class='text-left'><?php echo $project->code;?></td>
<td class='text-left pgm-title table-nest-title' title='<?php echo $project->name?>'>
<td class='c-name text-left' title='<?php echo $project->name?>'>
<span class="table-nest-icon"></span>
<?php echo html::a($this->createLink('program', 'index', "projectID=$project->id", '', '', $project->id), $project->name);?>
</td>

View File

@@ -47,7 +47,7 @@
<tr class='text-center'>
<td><?php echo html::a($projectLink, $project->id);?></td>
<td class='text-left'><?php echo $project->code;?></td>
<td class='text-left'><?php echo html::a($projectLink, $project->name);?></td>
<td class='c-name text-left'><?php echo html::a($projectLink, $project->name);?></td>
<td><?php echo $project->begin;?></td>
<td><?php echo $project->end;?></td>
<td class="c-status">

View File

@@ -751,7 +751,6 @@ class program extends control
$acl = $copyProgram->acl;
$auth = $copyProgram->auth;
$whitelist = $copyProgram->whitelist;
if(empty($model)) $model = $copyProgram->model;
$products = $this->project->getProducts($copyProjectID);
foreach($products as $product)

View File

@@ -846,7 +846,7 @@ class programModel extends model
}
$dropMenuLink = helper::createLink('program', 'ajaxGetPRJDropMenu', "objectID=$projectID&module=$currentModule&method=$currentMethod");
$output = "<div class='btn-group header-angle-btn' id='swapper'><button data-toggle='dropdown' type='button' class='btn' id='currentItem' title='{$currentProjectName}'>{$currentProjectName} <span class='caret'></span></button><div id='dropMenu' class='dropdown-menu search-list' data-ride='searchList' data-url='$dropMenuLink'>";
$output = "<div class='btn-group header-angle-btn' id='swapper'><button data-toggle='dropdown' type='button' class='btn' id='currentItem' title='{$currentProjectName}'>{$currentProjectName}<span class='caret'></span></button><div id='dropMenu' class='dropdown-menu search-list' data-ride='searchList' data-url='$dropMenuLink'>";
$output .= '<div class="input-control search-box has-icon-left has-icon-right search-example"><input type="search" class="form-control search-input" /><label class="input-control-icon-left search-icon"><i class="icon icon-search"></i></label><a class="input-control-icon-right search-clear-btn"><i class="icon icon-close icon-sm"></i></a></div>';
$output .= "</div></div>";
@@ -1410,7 +1410,7 @@ class programModel extends model
if($id == 'PRJName')
{
$class .= ' text-left';
$class .= ' c-name text-left';
$title = "title='{$project->name}'";
}