Createhtml_show.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <style>
  2. .table-list {margin:20px 10px;}
  3. </style>
  4. <div class="table-list">
  5. <table width="100%" cellspacing="0">
  6. <form action="{:U($module_name.'/do'.$action_name)}" method="get" name="myform">
  7. <input type="hidden" name="g" value="Admin">
  8. <input type="hidden" name="m" value="{$module_name}">
  9. <input type="hidden" name="a" value="do{$action_name}">
  10. <input type="hidden" name="moduleid" value="{$moduleid}">
  11. <input type="hidden" name="iscreatehtml" value="1">
  12. <thead>
  13. <tr>
  14. <th align="center" width="150">{:L(chose_module)}</th>
  15. <th align="center" width="386">{:L(chose_category)}</th>
  16. <th align="center">{:L(chose_manage)}</th>
  17. </tr>
  18. </thead>
  19. <tbody class="td-line">
  20. <tr>
  21. <td align="center" rowspan="4">
  22. <select name="moduleid" id="moduleid" size="2" style="margin:10px;height:200px;width:130px;" onclick="change_model(this.value)">
  23. <option value='' selected>{:L(module_select)}</option>
  24. <volist name="module" id="vo">
  25. <option value='{$vo.id}'>{$vo.title}</option>
  26. </volist>
  27. </td>
  28. </tr>
  29. <tr>
  30. <td align="center" rowspan="4">
  31. <select name='catids[]' id='catids' multiple="multiple" style="height:200px;margin:10px;padding-right:4px;" title="{:L(category_alt)}">
  32. <option value='0' selected>{:L(category_select)}</option>
  33. {$select_categorys}
  34. </td>
  35. </tr>
  36. <tr> <td><div style="margin:9px;"><font color="red">{:L(create_pagesize_1)} <input type="text" name="pagesize" value="<if condition="$action_name=='Updateurl'">50<else/>10</if>" size="4"> {:L(create_pagesize_2)}</font></div></td> </tr>
  37. <tr>
  38. <td><input type="submit" style="margin:20px;" name="dosubmit" value="{:L($action_name)}" class="button" ></td>
  39. </tr>
  40. </tbody>
  41. </form>
  42. </table>
  43. </div>
  44. <script>
  45. function change_model(moduleid){
  46. window.location.href = "{:U('Createhtml/'.$action_name)}&moduleid="+moduleid+"&menuid="+{$menuid};
  47. }
  48. $("#moduleid").attr("value",'{.moduleid}');
  49. </script>