活动管理-抽奖活动管理修改
This commit is contained in:
parent
e0e027cbb4
commit
869f19d8d5
|
|
@ -110,7 +110,7 @@
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="col-sm-4 control-label is-required">时间段限制次数:</label>
|
<label class="col-sm-4 control-label is-required">时间段限制次数:</label>
|
||||||
<div class="col-sm-8">
|
<div class="col-sm-8">
|
||||||
<input name="DAILYNUMBER" id="dailynumber" placeholder="时间段限制次数" class="form-control" type="text" maxlength="30" readonly>
|
<input name="DAILYNUMBER" id="dailynumber" placeholder="时间段限制次数" class="form-control" type="text" maxlength="30" disabled>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -121,7 +121,7 @@
|
||||||
<label class="col-sm-4 control-label is-required">抽奖限制开始时间:</label>
|
<label class="col-sm-4 control-label is-required">抽奖限制开始时间:</label>
|
||||||
<div class="col-sm-8">
|
<div class="col-sm-8">
|
||||||
<div class="input-group date">
|
<div class="input-group date">
|
||||||
<input name="DAILYSTARTTIME" class="form-control" placeholder="HH:mm:ss" type="text">
|
<input name="DAILYSTARTTIME" id="dailystarttime" class="form-control" placeholder="HH:mm:ss" type="text" disabled>
|
||||||
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
|
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -132,7 +132,7 @@
|
||||||
<label class="col-sm-4 control-label is-required">抽奖限制结束时间:</label>
|
<label class="col-sm-4 control-label is-required">抽奖限制结束时间:</label>
|
||||||
<div class="col-sm-8">
|
<div class="col-sm-8">
|
||||||
<div class="input-group date">
|
<div class="input-group date">
|
||||||
<input name="DAILYENDTIME" id="DAILYENDTIME" class="form-control" placeholder="HH:mm:ss" type="text">
|
<input name="DAILYENDTIME" id="dailyendtime" class="form-control" placeholder="HH:mm:ss" type="text" disabled>
|
||||||
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
|
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -157,7 +157,7 @@
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="col-sm-4 control-label is-required">抽奖必中计数:</label>
|
<label class="col-sm-4 control-label is-required">抽奖必中计数:</label>
|
||||||
<div class="col-sm-8">
|
<div class="col-sm-8">
|
||||||
<input name="WILLDRAWAWARDNUMBER" id="willdrawawardnumber" placeholder="抽奖必中计数" class="form-control" type="text" maxlength="30" readonly>
|
<input name="WILLDRAWAWARDNUMBER" id="willdrawawardnumber" placeholder="抽奖必中计数" class="form-control" type="text" maxlength="30" disabled>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -223,19 +223,23 @@
|
||||||
function dailyflag(){
|
function dailyflag(){
|
||||||
var DAILYFLAG = $("#DAILYFLAG").val();
|
var DAILYFLAG = $("#DAILYFLAG").val();
|
||||||
if (DAILYFLAG==1){
|
if (DAILYFLAG==1){
|
||||||
$('#dailynumber').removeAttr('readonly');
|
$('#dailynumber').removeAttr('disabled');
|
||||||
|
$('#dailystarttime').removeAttr('disabled');
|
||||||
|
$('#dailyendtime').removeAttr('disabled');
|
||||||
}else if(DAILYFLAG==0){
|
}else if(DAILYFLAG==0){
|
||||||
$("#dailynumber").attr('readonly','true');
|
$("#dailynumber").attr('disabled','true');
|
||||||
|
$("#dailystarttime").attr('disabled','true');
|
||||||
|
$("#dailyendtime").attr('disabled','true');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//抽奖必中配置
|
//抽奖必中配置
|
||||||
function willdrawflag(){
|
function willdrawflag(){
|
||||||
var WILLDRAWFLAG = $("#WILLDRAWFLAG").val();
|
var WILLDRAWFLAG = $("#WILLDRAWFLAG").val();
|
||||||
if (WILLDRAWFLAG==1){
|
if (WILLDRAWFLAG==1){
|
||||||
$('#willdrawawardnumber').removeAttr('readonly');
|
$('#willdrawawardnumber').removeAttr('disabled');
|
||||||
$('#willdrawawardprize').removeAttr('disabled');
|
$('#willdrawawardprize').removeAttr('disabled');
|
||||||
}else if(WILLDRAWFLAG==0){
|
}else if(WILLDRAWFLAG==0){
|
||||||
$("#willdrawawardnumber").attr('readonly','true');
|
$("#willdrawawardnumber").attr('disabled','true');
|
||||||
$("#willdrawawardprize").attr('disabled','true');
|
$("#willdrawawardprize").attr('disabled','true');
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -123,7 +123,7 @@
|
||||||
<label class="col-sm-4 control-label is-required">抽奖限制开始时间:</label>
|
<label class="col-sm-4 control-label is-required">抽奖限制开始时间:</label>
|
||||||
<div class="col-sm-8">
|
<div class="col-sm-8">
|
||||||
<div class="input-group date">
|
<div class="input-group date">
|
||||||
<input name="DAILYSTARTTIME" th:field="*{DAILYSTARTTIME}" class="form-control" placeholder="HH:mm:ss" type="text">
|
<input name="DAILYSTARTTIME" id="dailystarttime" th:field="*{DAILYSTARTTIME}" class="form-control" placeholder="HH:mm:ss" type="text">
|
||||||
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
|
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -134,7 +134,7 @@
|
||||||
<label class="col-sm-4 control-label is-required">抽奖限制结束时间:</label>
|
<label class="col-sm-4 control-label is-required">抽奖限制结束时间:</label>
|
||||||
<div class="col-sm-8">
|
<div class="col-sm-8">
|
||||||
<div class="input-group date">
|
<div class="input-group date">
|
||||||
<input name="DAILYENDTIME" th:field="*{DAILYENDTIME}" class="form-control" placeholder="HH:mm:ss" type="text">
|
<input name="DAILYENDTIME" id="dailyendtime" th:field="*{DAILYENDTIME}" class="form-control" placeholder="HH:mm:ss" type="text">
|
||||||
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
|
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -195,11 +195,13 @@
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var DAILYFLAG = $("#DAILYFLAG").val();
|
var DAILYFLAG = $("#DAILYFLAG").val();
|
||||||
if(DAILYFLAG==0){
|
if(DAILYFLAG==0){
|
||||||
$("#dailynumber").attr('readonly','true');
|
$("#dailynumber").attr('disabled','true');
|
||||||
|
$("#dailystarttime").attr('disabled','true');
|
||||||
|
$("#dailyendtime").attr('disabled','true');
|
||||||
}
|
}
|
||||||
var WILLDRAWFLAG = $("#WILLDRAWFLAG").val();
|
var WILLDRAWFLAG = $("#WILLDRAWFLAG").val();
|
||||||
if(WILLDRAWFLAG==0){
|
if(WILLDRAWFLAG==0){
|
||||||
$("#willdrawawardnumber").attr('readonly','true');
|
$("#willdrawawardnumber").attr('disabled','true');
|
||||||
$("#willdrawawardprize").attr('disabled','true');
|
$("#willdrawawardprize").attr('disabled','true');
|
||||||
}
|
}
|
||||||
var FIRSTFLAG = $("#FIRSTFLAG").val();
|
var FIRSTFLAG = $("#FIRSTFLAG").val();
|
||||||
|
|
@ -263,19 +265,24 @@
|
||||||
function dailyflag(){
|
function dailyflag(){
|
||||||
var DAILYFLAG = $("#DAILYFLAG").val();
|
var DAILYFLAG = $("#DAILYFLAG").val();
|
||||||
if (DAILYFLAG==1){
|
if (DAILYFLAG==1){
|
||||||
$('#dailynumber').removeAttr('readonly');
|
$('#dailynumber').removeAttr('disabled');
|
||||||
|
$('#dailystarttime').removeAttr('disabled');
|
||||||
|
$('#dailyendtime').removeAttr('disabled');
|
||||||
}else if(DAILYFLAG==0){
|
}else if(DAILYFLAG==0){
|
||||||
$("#dailynumber").attr('readonly','true');
|
$("#dailynumber").attr('disabled','true');
|
||||||
|
$("#dailystarttime").attr('disabled','true');
|
||||||
|
$("#dailyendtime").attr('disabled','true');
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//抽奖必中配置
|
//抽奖必中配置
|
||||||
function willdrawflag(){
|
function willdrawflag(){
|
||||||
var WILLDRAWFLAG = $("#WILLDRAWFLAG").val();
|
var WILLDRAWFLAG = $("#WILLDRAWFLAG").val();
|
||||||
if (WILLDRAWFLAG==1){
|
if (WILLDRAWFLAG==1){
|
||||||
$('#willdrawawardnumber').removeAttr('readonly');
|
$('#willdrawawardnumber').removeAttr('disabled');
|
||||||
$('#willdrawawardprize').removeAttr('disabled');
|
$('#willdrawawardprize').removeAttr('disabled');
|
||||||
}else if(WILLDRAWFLAG==0){
|
}else if(WILLDRAWFLAG==0){
|
||||||
$("#willdrawawardnumber").attr('readonly','true');
|
$("#willdrawawardnumber").attr('disabled','true');
|
||||||
$("#willdrawawardprize").attr('disabled','true');
|
$("#willdrawawardprize").attr('disabled','true');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue