addcity.html 1.1 KB

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>管理栏目</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <meta name="viewport" content="width=device-width">
  7. <link href="{{rootUrl}}global/v1/m/images/style.css" rel="stylesheet" type="text/css" />
  8. </head>
  9. <body>
  10. <div class="main_content new_product">
  11. <div class="globle_form">
  12. <form action="" name="cityform" method="post">
  13. <table cellspacing="0" cellpadding="0" class="tableForm">
  14. <tr><th width="120">上级分类</th><td>
  15. <select id="searchselectid" name="acsel">
  16. <option value="0">一级栏目</option>
  17. <!-- loop arrcat -->
  18. <option value="{{arrcat' value.catid}}" >{{arrcat' value.catname}}</option>
  19. <!-- endloop -->
  20. </select>
  21. </td>
  22. </tr>
  23. <tr><th width="120">栏目名称</th><td><input type="text" name="categoryname" class="inputText"></td></tr>
  24. <tr><td><input type="submit" name="citysubmit" value="添加分类"></td></tr>
  25. </table>
  26. </form>
  27. </body>
  28. </html>