模特管理.html 2.89 KB
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<link href="http://static.yohobuy.com/admin/css/style.css" rel="stylesheet" type="text/css" media="all" />
	<script type="text/javascript" src="http://static.yohobuy.com/admin/js/jquery.min.js"></script>
	<link type="text/css" href="http://static.yohobuy.com/admin/js/jqueryui/themes/ui-lightness/jquery-ui-1.8.7.custom.css" rel="stylesheet" />
	<script type="text/javascript" src="http://static.yohobuy.com/admin/js/jqueryui/ui/jquery-ui-1.8.7.custom.js"></script>
	<script type="text/javascript" src="http://static.yohobuy.com/admin/js/jqueryui/ui/i18n/jquery.ui.datepicker-zh-CN.js"></script>
	<script type="text/javascript">
	$(function() {
		$( "#datepicker" ).datepicker();
		$( "#datepicker2" ).datepicker();
	});
	</script>
	<title>YOHO有货后台管理</title>
	</head>

	<body>
<div class="mainbox">
      <div class="daohang">当前位置:<a href="main.html">首页</a> > <span>模特管理</span></div>
      <div class="lan-tab">
        <ul>
          <li class="act" onclick="window.location.href='模特管理.html'">新增模特</li>
          <li onclick="window.location.href='模特列表.html'">模特列表</li>
          <li onclick="window.location.href='分配模特.html'">分配模特</li>
        </ul>
      </div>
      <table class="table1" style="width: 100%;">
            <thead>
                <tr>
                    <th colspan="2">
                        新增模特
                    </th>
                </tr>
            </thead>
            <tr>
                <td>
                    模特名字
                </td>
                <td>
                    <input id="txtmodelname" type="text" />
                </td>
            </tr>
            <tr>
                <td>
                    模特性别
                </td>
                <td>
                        <select id="sltmodelsex">
                            <option value="1"></option>
                            <option value="2"></option>
                        </select>

                </td>
            </tr>
            <tr>
                <td>
                    模特图片
                </td>
                <td>
                    <span class="font_red">上传图片大小为600*145</span><br />
                    <input id="txtmodelimg" type="text" />&nbsp;
                    <button type="button" class="but2" >
                        浏览</button>
                </td>
            </tr>
            <tr>
                <td colspan="2" align="center">
                    
                    <button type="button" class="but1">保存</button>
                    
                </td>
            </tr>
        </table>
    </div>
</body>
</html>