| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 | 
							
- <form name="myform" id="myform" action="" method="post">
 
- <div class="table-list">
 
-     <table width="100%"   border="0" cellspacing="0" cellpadding="0" align="center">
 
- 		<thead>
 
-             <tr>
 
- 			<th width="40"><input type="checkbox" value="" id="check_box" onclick="selectall('ids[]');"></th>
 
-             <th width="40">{:L('listorder')}</th>
 
-             <th width="30">ID</th>
 
- 			<th  align="left">{:L('name')}</th>
 
-             <th width="50">{:L('status')}</th>
 
-             <th width="70">物流保价</th>
 
-             <th width="70">货到付款</th>
 
- 			<th width="150">{:L('manage')}</th>
 
-             </tr>
 
-         </thead>
 
-       	<tbody>
 
-       		<volist name="list" id="vo" key="k">
 
-       		<tr>
 
- 			<td width="40" align="center"><input class="inputcheckbox " name="ids[]" value="{$vo['id']}" type="checkbox" ></td>
 
- 			<td width="40" align='center'><input name='listorders[{$vo.id}]' type='text' size='3' value='{$vo.listorder}' class='input-text-c'></td>
 
- 			<td width="30" align="center">{$vo['id']}</td>
 
-       		<td>{$vo['name']}</td>
 
- 			<td align="center">{if $vo['status']}{:L(enable)}{else}{:L(disable)}{/if}</td>
 
-       		<td align="center">{if $vo['is_insure']}{:L(yes)}{else}{:L(no)}{/if}</td>
 
-       		<td align="center">{if $vo['type']}{:L(yes)}{else}{:L(no)}{/if}</td>
 
- 			<td align="center"><a href="javascript:openwin('edit','{:U($module_name.'/edit',array(id=>$vo['id'],isajax=>1))}','{:L('edit')}',600,450)">{:L('edit')}</a> | <a href="javascript:confirm_delete('{:U($module_name.'/delete',array(id=>$vo['id']))}')">{:L('delete')}</a></td>
 
-       		</tr>
 
-       		</volist>
 
-       	</tbody>
 
-     </table>
 
-     <div class="btn"><input type="button" class="button" name="dosubmit" value="<?php echo L('delete')?>" onclick="myform.action='{:U($module_name.'/deleteall')}';return confirm_deleteall()"/> <input  type="button" class="button" name="dosubmit" value="<?php echo L('listorder')?>" onclick="myform.action='{:U($module_name.'/listorder')}';$('#myform').submit();" /></div>
 
- </form></div>
 
- <div id="pages" class="page">{$page}</div>
 
- </div>
 
- </body></html>
 
 
  |