Try_index.html 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <table class="search_table" width="100%">
  2. <tr>
  3. <td class="search">
  4. <form action="{:U($module_name.'/index')}" method="get">
  5. <input type="hidden" name="g" value="{$Think.GROUP_NAME}" />
  6. <input type="hidden" name="m" value="{$Think.MODULE_NAME}" />
  7. <input type="hidden" name="a" value="{$Think.ACTION_NAME}" />
  8. <input id="title" type="text" size="14" class="input-text" name="keyword" value="{$Think.get.keyword}" />
  9. <!--<select name="searchtype">-->
  10. <!-- <if condition="$fields['name']">-->
  11. <!-- <option value="title" <eq name="searchtype" value='name'>selected="selected"</eq>>{:L('name')}</option>-->
  12. <!-- </if>-->
  13. <!-- <if condition="$fields['title']">-->
  14. <!-- <option value="title" <eq name="searchtype" value='title'>selected="selected"</eq>>{:L('title')}</option>-->
  15. <!-- </if>-->
  16. <!-- <if condition="$fields['username']">-->
  17. <!-- <option value="username" <eq name="searchtype" value="username">selected="selected"</eq>>{:L('username')}</option>-->
  18. <!-- </if>-->
  19. <!-- <if condition="$fields['keywords']">-->
  20. <!-- <option value="keywords" <eq name="searchtype" value='keywords'>selected="selected"</eq>>{:L('keywords')}</option>-->
  21. <!-- </if>-->
  22. <!-- <option value="id" <eq name="searchtype" value='id'>selected="selected"</eq>>ID</option>-->
  23. <!--</select>-->
  24. <!--<if condition="$fields['catid']">-->
  25. <!-- <select id="catid" name="catid">-->
  26. <!-- <option value="">{:L('select_category')}</option>-->
  27. <!-- {$select_categorys}-->
  28. <!-- </select>-->
  29. <!--</if>-->
  30. <!--<if condition="$fields['typeid']">-->
  31. <!-- <select id="typeid" name="typeid">-->
  32. <!-- <option value="">{:L('select_typeid')}</option>-->
  33. <!-- <volist name="Type" id="row">-->
  34. <!-- <if condition="$row['parentid']==$fields['typeid']['setup']['default']">-->
  35. <!-- <option value="{$row['typeid']}" <eq name="typeid" value="$row['typeid']">selected="selected"</eq>>{$row['name']}</option>-->
  36. <!-- </if>-->
  37. <!-- </volist>-->
  38. <!-- </select>-->
  39. <!--</if>-->
  40. <!--<if condition="$fields['posid']">-->
  41. <!-- <select id="posid" name="map[posid]">-->
  42. <!-- <option value="">{:L('select_posids')}</option>-->
  43. <!-- <volist name="posids" id="row">-->
  44. <!-- <option value="{$row['id']}" <if condition="$posid ==$row['id']">selected="selected"</if>>{$row['name']}</option>-->
  45. <!--</volist>-->
  46. <!--</select>-->
  47. <!--</if>-->
  48. <!--<select id="status" name="map[status]">-->
  49. <!-- <option value="">{:L('status')}</option>-->
  50. <!-- <option value="0" <if condition="isset($status) && $status ==0">selected="selected"</if>>{:L(noshenhe)}</option>-->
  51. <!-- <option value="1" <if condition="isset($status) && $status ==1">selected="selected"</if>>{:L(isshenhe)}</option>-->
  52. <!--</select>-->
  53. <select id="order" name="order">
  54. <option value="listorder" <eq name="order" value="listorder">selected="selected"</eq>>{:L('listorder')}</option>
  55. <option value="{$pkid}" <eq name="order" value="$pkid">selected="selected"</eq>>ID{:L('listorder')}</option>
  56. <if condition="$fields['hits']">
  57. <option value="hits" <eq name="order" value="hits">selected="selected"</eq>>{:L('hits')}{:L('listorder')}</option>
  58. </if>
  59. </select>
  60. <select name="sort">
  61. <option value="asc" <if condition="$sort =='asc'">selected="selected"</if>>{:L('order_by_asc')}</option>
  62. <option value="desc" <if condition="$sort =='desc'">selected="selected"</if>>{:L('order_by_desc')}</option>
  63. </select>
  64. <select name="listRows">
  65. <option value="15" <if condition="$listRows ==5">selected="selected"</if>>15{:L('listRows')}</option>
  66. <option value="20" <if condition="$listRows ==20">selected="selected"</if>>20{:L('listRows')}</option>
  67. <option value="50" <if condition="$listRows ==50">selected="selected"</if>>50{:L('listRows')}</option>
  68. <option value="100" <if condition="$listRows ==100">selected="selected"</if>>100{:L('listRows')}</option>
  69. </select>
  70. <input type="hidden" id="menuid" name="menuid" value="{$_GET['menuid']}" />
  71. <input type="submit" value="{:L('chaxun')}" class="button" />
  72. <input type="reset" value="{:L('reset')}" class="button" />
  73. </form>
  74. </td>
  75. </tr>
  76. </table>
  77. <form name="myform" id="myform" action="" method="post">
  78. <div class="table-list">
  79. <table width="100%" cellspacing="0">
  80. <thead>
  81. <tr>
  82. <th width="30"><input type="checkbox" value="" id="check_box" onclick="selectall('ids[]');"></th>
  83. <th width="40">ID</th>
  84. <th>客户姓名</th>
  85. <th>联系方式</th>
  86. <th>意向模板</th>
  87. <th>留言时间</th>
  88. <!--<if condition="$fields['status']">-->
  89. <!-- <th width="60">{:L('status')}</th>-->
  90. <!--</if>-->
  91. <!--<if condition="$fields['hits']">-->
  92. <!-- <th width="40">{:L('hits')}</th>-->
  93. <!--</if>-->
  94. <th width="72">{:L('manage')}</th>
  95. </tr>
  96. </thead>
  97. <tbody>
  98. <volist name="list" id="vo" key="k">
  99. <tr>
  100. <td width="30" align="center"><input class="inputcheckbox " name="ids[]" value="{$vo['id']}" type="checkbox"></td>
  101. <td align="center">{$vo['id']}</td>
  102. <td align="center">{$vo['name']}</td>
  103. <td align="center">{$vo['phone']}</td>
  104. <td align="center">{$vo['qq']}</td>
  105. <td align="center">{$vo['createtime']|toDate=###,'Y-m-d H:i:s'}</td>
  106. <!--<if condition="$fields['status']">-->
  107. <!-- <td align="center">{if $vo['status']==1}<font color="green">{:L('isshenhe')}</font>{else}<a href="{:U($module_name.'/status',array(id=>$vo['id'],status=>1))}">-->
  108. <!-- <font color="red">{:L('noshenhe')}</font>-->
  109. <!-- </a>{/if}</td>-->
  110. <!--</if>-->
  111. <!--<if condition="$fields['hits']">-->
  112. <!-- <td align="center">{$vo['hits']}</td>-->
  113. <!--</if>-->
  114. <td align="center"><a href="{:U($module_name.'/edit',array(id=>$vo['id']))}">{:L('edit')}</a> | <a href="javascript:confirm_delete('{:U($module_name.'/delete',array(id=>$vo['id']))}')">{:L('delete')}</a></td>
  115. </tr>
  116. </volist>
  117. </tbody>
  118. </table>
  119. <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()" />
  120. <input type="button" class="button" name="dosubmit" value="<?php echo L('status_ok')?>" onclick="myform.action='{:U($module_name.'/statusallok')}';$('#myform').submit();" />
  121. </div>
  122. </form>
  123. </div>
  124. <div id="pages" class="page">{$page}</div>
  125. <script>
  126. $("#catid").attr("value", '{$catid}');
  127. function confirm_deleteall() {
  128. art.dialog.confirm("{:L('real_delete')}", function () {
  129. $('#myform').submit();
  130. });
  131. }
  132. </script>