| 12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>管理栏目</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="viewport" content="width=device-width">
- <link href="{{rootUrl}}global/v1/m/images/style.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div class="main_content new_product">
- <div class="globle_form">
- <form action="" name="cityform" method="post">
- <table cellspacing="0" cellpadding="0" class="tableForm">
- <tr><th width="120">上级分类</th><td>
- <select id="searchselectid" name="acsel">
- <option value="0">一级栏目</option>
- <!-- loop arrcat -->
- <option value="{{arrcat' value.catid}}" >{{arrcat' value.catname}}</option>
- <!-- endloop -->
- </select>
- </td>
- </tr>
- <tr><th width="120">栏目名称</th><td><input type="text" name="categoryname" class="inputText"></td></tr>
- <tr><td><input type="submit" name="citysubmit" value="添加分类"></td></tr>
- </table>
- </form>
- </body>
- </html>
|