list_channel_result.tpl

来自「渣渣网络商店系统[ZZShop] V1.0」· TPL 代码 · 共 51 行

TPL
51
字号
<form action="{ACTION}" method="post" name='frmInfo'>
<table width="100%"  border="0" cellspacing=0 cellpadding=5 class='adminlist'>
  <tr class='list_pagesize'>
    <td align="right" colspan=100>每页记录数:      
      <select name="select" onChange='window.location="{REQUEST_URI}&PageSize=" + this.options[this.selectedIndex].value;'>
        <option selected>选择每页记录数</option>
        <option value=5 {PAGE_SIZE_5}>5 条</option>
        <option value=10 {PAGE_SIZE_10}>10 条</option>
        <option value=20 {PAGE_SIZE_20}>20 条</option>
        <option value=50 {PAGE_SIZE_50}>50 条</option>
        <option value=100 {PAGE_SIZE_100}>100 条</option>
        <option value=-1 {PAGE_SIZE_ALL}>全部</option>
      </select></td>
  </tr>
  <tr class='list_title'>
    <th width="30"><a onClick='reverseCheck(frmInfo.sid);'><strong>选</strong></a></th>
    <th width=60>#</th>
    <!-- beginRow FieldList -->
    <th>{FieldList.Value}</th>
    <!-- endRow FieldList -->
    <th width=120>添加时间</th>
    <th width=80>操作</th>
  </tr>
  <!-- beginRow ResultList -->
  <tr align="center" class='list_content' onClick='select_thisrow(this);' onmouseover='highlightrow2(this, true);' onmouseout='highlightrow2(this, false);'>
    <td><input onClick='highlight_row(this);'  type="checkbox" name="ids[]" id='sid' value='{ResultList.ID}'></td>
    <!-- beginRow ColList -->
    <td>{ColList.Value}</td>
    <!-- endRow ColList -->
    <td>
    	<table width="100%"  border="0" cellspacing="0" cellpadding="0" class="operate">
        	<tr align="center">
        		<td><img class=btn_image alt='查看' title='查看' src='images/btn_view.gif' onClick='doSomething("result_detail", {ResultList.ID}, false, "ChannelID=" + {ChannelID});'>   </td>
        		<td><img class=btn_image alt='编辑' title='编辑' src='images/btn_edit.gif' onClick='doSomething("modify_item", {ResultList.ID}, false, "ChannelID=" + {ChannelID});'></td>
        		<td><img class=btn_image alt='删除' title='删除' src='images/btn_del.gif' onClick='doSomething("result_delete", {ResultList.ID}, true, "ChannelID=" + {ChannelID});'></td>
        		</tr>
        	</table>
    </td>
  </tr>
  <!-- endRow ResultList -->
  <tr align="right" class='list_operater'>
    <td colspan=100>
    	<input type="button" value='删除选定' onClick='doSomethings("result_delete", true, "", "ChannelID=" + {ChannelID});'>
    	<input type=hidden value='{ChannelID}' name='ChannelID'>
    </td>
  </tr>
  <tr align="right" class='list_bottom'>
    <td colspan=100>{PAGE_LIST}</td>
  </tr>
</table>
</form>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?