Field_index.html 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <script>
  2. $('#nav ul a ').removeClass('on');
  3. $('#nav ul').append('<a href="{:U("Field/index",array(moduleid=>$_GET[moduleid]))}" class="on">{:L(field_manage)}</a> | <a href="{:U("Field/add",array(moduleid=>$_GET[moduleid]))}">{:L(field_add)}</a> |');
  4. </script>
  5. <form id="myform" name="myform" action="{:U('Field/listorder')}" method="post">
  6. <div class="table-list">
  7. <table width="100%" cellspacing="0">
  8. <thead>
  9. <tr>
  10. <th width="40">{:L(listorder)}</th>
  11. <th align="left" width="80">{:L(field_field)}</th>
  12. <th align="left">{:L(field_name)}</th>
  13. <th width="60" align="left" >{:L(field_type)}</th>
  14. <th width="60">{:L(field_issystem)}</th>
  15. <th width="40">{:L(field_required)}</th>
  16. <th width="200">{:L(manage)}</th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. <volist name="list" id="vo" key="k">
  21. <tr>
  22. <td align='center' width="40"><input name='listorders[{$vo.id}]' type='text' size='3' value='{$vo.listorder}' class='input-text-c'></td>
  23. <td>{$vo['field']}</td>
  24. <td>{$vo['name']}</td>
  25. <td>{$vo['type']}</td>
  26. <td align="center"><if condition="in_array($vo['field'],$sysfield)">{:L(duihao)}<else />{:L(xuohao)}</if></td>
  27. <td align="center"><if condition="$vo['required']==1">{:L(duihao)}<else />{:L(xuohao)}</if></td>
  28. <td align="center">
  29. <a href="{:U('Field/edit',array(moduleid=>$vo['moduleid'],id=>$vo['id']))}" >{:L(edit)}</a> |
  30. <if condition="$vo[status]==1">
  31. <if condition="in_array($vo['field'],$nodostatus)">
  32. <font color="#D3D3D3">{:L(disable)}</font>
  33. <else />
  34. <a href="{:U('Field/status',array(id=>$vo['id'],status=>0))}">{:L(disable)}</a>
  35. </if>
  36. <else />
  37. <a href="{:U('Field/status',array(id=>$vo['id'],status=>1))}"><font color="red">{:L(enable)}</font></a>
  38. </if>
  39. | <if condition="in_array($vo['field'],$sysfield)">
  40. <font color="#D3D3D3">{:L(delete)}</font>
  41. <else />
  42. <a href="javascript:confirm_delete('{:U('Field/delete',array(id=>$vo['id']))}')">{:L(delete)}</a>
  43. </if>
  44. </td>
  45. </tr>
  46. </volist>
  47. </tbody>
  48. </table>
  49. </div>
  50. <div class="btn"> <input type="button" class="button" name="dosubmit" value="{:L(listorder)}" onclick="myform.action='{:U($module_name.'/listorder')}';$('#myform').submit();" /></div>
  51. </form></div>
  52. </body></html>