| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 | <include file="public@header"/></head><body>	<div class="wrap">		<ul class="nav nav-tabs">			<li ><a href="{:url('Music/classify')}">音乐分类</a></li>			<li class="active"><a >添加</a></li>		</ul>		<form method="post" class="form-horizontal js-ajax-form margin-top-20" action="{:url('Music/classify_add_post')}">			<fieldset>				<div class="form-group" >					<label for="input-orderno" class="col-sm-2 control-label"><span class="form-required">*</span>排序号</label>					<div class="col-md-6 col-sm-10">						<input type="text"class="form-control" id="input-orderno"  name="orderno" value=""><p class="help-block">填写正整数</p>					</div>				</div>								<div class="form-group" >					<label for="input-title" class="col-sm-2 control-label"><span class="form-required">*</span>分类标题</label>					<div class="col-md-6 col-sm-10">						<input type="text"class="form-control" id="input-title"  name="title" value="" maxlength="7"> <p class="help-block">简洁明了</p>					</div>				</div>								<div class="form-group">					<label for="input-user_login" class="col-sm-2 control-label"><span class="form-required">*</span>分类图标</label>					<div class="col-md-6 col-sm-10">						<input type="hidden" name="img_url" id="thumbewm" value="">						<a href="javascript:uploadOneImage('图片上传','#thumbewm');">							<img src="__TMPL__/public/assets/images/default-thumbnail.png" id="thumbewm-preview" style="cursor: pointer;max-width:150px;max-height:150px;"/>						</a>						<input type="button" class="btn btn-sm btn-cancel-thumbewm" value="取消图片">						<p class="help-block">建议尺寸100px*100px</p>					</div>				</div>			</fieldset>						<div class="form-group">				<div class="col-sm-offset-2 col-sm-10">					<button type="submit" class="btn btn-primary js-ajax-submit">{:lang('ADD')}</button>					<a class="btn btn-default" href="javascript:history.back(-1);">{:lang('BACK')}</a>				</div>			</div>					</form>	</div>	<script src="__STATIC__/js/admin.js"></script>	<script type="text/javascript">		(function(){			$('.btn-cancel-thumbewm').click(function () {				$('#thumbewm-preview').attr('src', '__TMPL__/public/assets/images/default-thumbnail.png');				$('#thumbewm').val('');			});					})()	</script>	</body></html>
 |