* Task#3437

This commit is contained in:
滔哥
2017-12-07 16:37:45 +08:00
parent 5ee2c261f6
commit 88bd2a9e91
4 changed files with 8 additions and 4 deletions
+1 -3
View File
@@ -46,7 +46,6 @@ js::set('confirmDelete', $lang->user->confirmDelete);
<th><?php common::printOrderLink('gender', $orderBy, $vars, $lang->user->gender);?></th>
<th><?php common::printOrderLink('phone', $orderBy, $vars, $lang->user->phone);?></th>
<th><?php common::printOrderLink('qq', $orderBy, $vars, $lang->user->qq);?></th>
<th><?php common::printOrderLink('join', $orderBy, $vars, $lang->user->join);?></th>
<th><?php common::printOrderLink('last', $orderBy, $vars, $lang->user->last);?></th>
<th><?php common::printOrderLink('visits', $orderBy, $vars, $lang->user->visits);?></th>
<th class='w-90px'><?php echo $lang->actions;?></th>
@@ -72,7 +71,6 @@ js::set('confirmDelete', $lang->user->confirmDelete);
<td><?php if(isset($lang->user->genderList[$user->gender])) echo $lang->user->genderList[$user->gender];?></td>
<td><?php echo $user->phone;?></td>
<td><?php if($user->qq) echo html::a("tencent://message/?uin=$user->qq", $user->qq);?></td>
<td><?php echo $user->join;?></td>
<td><?php if($user->last) echo date('Y-m-d', $user->last);?></td>
<td><?php echo $user->visits;?></td>
<td class='text-left'>
@@ -94,7 +92,7 @@ js::set('confirmDelete', $lang->user->confirmDelete);
</tbody>
<tfoot>
<tr>
<td colspan='12'>
<td colspan='11'>
<div class='table-actions clearfix'>
<?php
if($canBatchEdit) echo html::selectButton();
+2
View File
@@ -69,10 +69,12 @@
<th><?php echo $lang->user->commiter;?></th>
<td><?php echo html::input('commiter', '', "class='form-control' autocomplete='off'");?></td>
</tr>
<!--
<tr>
<th><?php echo $lang->user->join;?></th>
<td><?php echo html::input('join', '', "class='form-control form-date'");?></td>
</tr>
-->
<tr>
<th><?php echo $lang->user->gender;?></th>
<td><?php echo html::radio('gender', (array)$lang->user->genderList, 'm');?></td>
+3 -1
View File
@@ -39,10 +39,12 @@
<td colspan='3'><?php echo html::select('groups[]', $groups, $userGroups, 'size=3 multiple=multiple class="form-control chosen"');?></td>
</tr>
<tr>
<!--
<th><?php echo $lang->user->join;?></th>
<td><?php echo html::input('join', $user->join, "class='form-control form-date'");?></td>
-->
<th><?php echo $lang->user->gender;?></th>
<td><?php echo html::radio('gender', (array)$lang->user->genderList, $user->gender);?></td>
<td colspan="3"><?php echo html::radio('gender', (array)$lang->user->genderList, $user->gender);?></td>
</tr>
</table>
<table align='center' class='table table-form'>
+2
View File
@@ -74,10 +74,12 @@
<th><?php echo $lang->user->email;?></th>
<td><?php echo $user->email;?></td>
</tr>
<!--
<tr>
<th><?php echo $lang->user->join;?></th>
<td><?php echo $user->join;?></td>
</tr>
-->
<tr>
<th><?php echo $lang->user->visits;?></th>
<td><?php echo $user->visits;?></td>