Authored by wangshusheng

修改

... ... @@ -53,7 +53,7 @@
<label class="col-sm-2 control-label">标签名称<i class="red">*</i></label>
<div class="col-sm-10">
<input type="text" value="{tagName}" class="form-control observe" data-field="tagName"
<input type="text" id="tagName" name="tagName" value="{tagName}" class="form-control observe" data-field="tagName"
placeholder="标签名称" required="required"/>
</div>
</div>
... ... @@ -61,7 +61,7 @@
<label class="col-sm-2 control-label">分类ID</label>
<div class="col-sm-10">
<input type="text" value="{categoryId}" class="form-control observe" data-field="categoryId"
<input type="text" id="categoryId" name="categoryId" value="{categoryId}" class="form-control observe" data-field="categoryId"
placeholder="分类ID"/>
<p class="red">注:多个ID用“,”隔开</p>
</div>
... ... @@ -78,7 +78,7 @@
<input type="checkbox" name="platform" data-field="platform" value="web"/>网站
<input type="checkbox" name="platform" data-field="platform" value="platform"/>平台
</div>
<input type="hidden" id="platform" class="observe" value="{platform}" for="checkbox" data-field="platform"
<input type="hidden" id="platform" name="platform" class="observe" value="{platform}" for="checkbox" data-field="platform"
placeholder="显示平台">
</div>
<div class="form-group">
... ... @@ -90,27 +90,27 @@
<input type="radio" name="channel" class="observe" data-field="channel" value="4">创意家居
</div>
<input type="hidden" id="channel" value="{channel}" for="radio" class="observe" data-field="channel"
<input type="hidden" id="channel" name="channel" value="{channel}" for="radio" class="observe" data-field="channel"
placeholder="显示频道" required/>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">排序</label>
<div class="col-sm-10">
<input type="text" value="{orderBy}" class="form-control observe" data-field="orderBy"
<input type="text" id="orderBy" name="orderBy" value="{orderBy}" class="form-control observe" data-field="orderBy"
placeholder="排序" required/>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">品牌过滤</label>
<div class="col-sm-10">
<input id="brandIds" class="form-control observe" value="{brandIds}" placeholder="请输入品牌ID,多个品牌ID用“,”隔开" data-field="brandIds">
<input id="brandIds" name="brandIds" class="form-control observe" value="{brandIds}" placeholder="请输入品牌ID,多个品牌ID用“,”隔开" data-field="brandIds">
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">商品过滤</label>
<div class="col-sm-10">
<input type="text" id="productSkns" class="form-control observe" value="{productSkns}" placeholder="请输入skn,多个skn用“,”隔开" data-field="productSkns">
<input type="text" id="productSkns" name="productSkns" class="form-control observe" value="{productSkns}" placeholder="请输入skn,多个skn用“,”隔开" data-field="productSkns">
</div>
</div>
<div class="form-group">
... ...