Authored by chenchao

fix

... ... @@ -33,7 +33,7 @@
<div class="form-group">
<label class="col-sm-2 control-label">起始时间&nbsp;&nbsp;<span class="red">*</span></label>
<div class="col-sm-4">
<input id="startTime" class="form-control" jsaction="time:end:endTime" type="text" placeholder="预售上架时间"
<input id="startTime" class="form-control" jsaction="time:end:endTime" type="text" placeholder="起始时间"
value="<%data.startTime%>" readonly required/>
</div>
</div>
... ... @@ -41,7 +41,7 @@
<div class="form-group">
<label class="col-sm-2 control-label">结束时间&nbsp;&nbsp;<span class="red">*</span></label>
<div class="col-sm-4">
<input id="endTime" class="form-control" jsaction="time:start:startTime" type="text" placeholder="预售下架时间"
<input id="endTime" class="form-control" jsaction="time:start:startTime" type="text" placeholder="结束时间"
value="<%data.endTime%>" readonly required/>
</div>
</div>
... ...
... ... @@ -55,7 +55,9 @@ var t = new common.tab2({
}else if(columnname === ENUM.tabName[3].en) {
}else if(columnname === ENUM.tabName[4].en) {
//todo 加载促销列表
// 加载促销列表
var html_promotions=$(grid_promotions.el).html();
$("#tab_body").html(html_promotions);
grid_promotions.init("/promotionInfo/list");
}else if(columnname === ENUM.tabName[5].en) {
... ...