* adjust style for user.

This commit is contained in:
wangyidong
2012-12-24 08:16:22 +00:00
parent 78e5c03bdf
commit 6e992a3a9f
2 changed files with 20 additions and 20 deletions
+9 -9
View File
@@ -19,9 +19,9 @@
<tr>
<th class='w-20px'><?php echo $lang->idAB;?></th>
<th class='w-150px'><?php echo $lang->user->dept;?></th>
<th class='w-150px'><?php echo $lang->user->account;?></th>
<th class='w-150px'><?php echo $lang->user->realname;?></th>
<th class='w-150px'><?php echo $lang->user->role;?></th>
<th class='w-130px'><?php echo $lang->user->account;?></th>
<th class='w-130px'><?php echo $lang->user->realname;?></th>
<th class='w-100px'><?php echo $lang->user->role;?></th>
<th><?php echo $lang->user->email;?></th>
<th class='w-60px'><?php echo $lang->user->gender;?></th>
<th><?php echo $lang->user->password;?></th>
@@ -31,15 +31,15 @@
<?php for($i = 0; $i < $config->user->batchCreate; $i++):?>
<tr class='a-center'>
<td><?php echo $i+1;?></td>
<td><?php echo html::select("dept[$i]", $depts, $i > 0 ? 'ditto' : $deptID, "class='select-2'");?>
<td><?php echo html::input("account[$i]", '', "class='text-2 account_$i' autocomplete='off' onchange='changeEmail($i)'");?></td>
<td><?php echo html::input("realname[$i]", '', "class='text-2'");?></td>
<td><?php echo html::select("role[$i]", $lang->user->roleList, $i > 0 ? 'ditto' : '', "class='select-2'");?></td>
<td><?php echo html::input("email[$i]", '', "class='text-3 email_$i' onchange='setDefaultEmail($i)'");?></td>
<td><?php echo html::select("dept[$i]", $depts, $i > 0 ? 'ditto' : $deptID, "class='select-1'");?>
<td><?php echo html::input("account[$i]", '', "class='text-1 account_$i' autocomplete='off' onchange='changeEmail($i)'");?></td>
<td><?php echo html::input("realname[$i]", '', "class='text-1'");?></td>
<td><?php echo html::select("role[$i]", $lang->user->roleList, $i > 0 ? 'ditto' : '', "class='select-1'");?></td>
<td><?php echo html::input("email[$i]", '', "class='text-1 email_$i' onchange='setDefaultEmail($i)'");?></td>
<td><?php echo html::radio("gender[$i]", (array)$lang->user->genderList, 'm');?></td>
<td>
<?php
echo html::input("password[$i]", '', "class='text-3' autocomplete='off'");
echo html::input("password[$i]", '', "class='w-p70' autocomplete='off'");
echo "<input type='checkbox' name='ditto[$i]' " . ($i> 0 ? "checked" : '') . " /> {$lang->user->ditto}";
?>
</td>