活动管理-抽奖活动管理修改页面展示问题

This commit is contained in:
xu0625 2021-03-30 10:04:12 +08:00
parent 40a9e7c1fb
commit 5e95f854a2
5 changed files with 8 additions and 8 deletions

View File

@ -60,7 +60,7 @@ public class DrawConfig extends BaseEntity
private Long AVAILABLENUMBER;
/** 状态 */
@Excel(name = "状态" ,readConverterExp="1=启用,2=")
@Excel(name = "状态" ,readConverterExp="1=启用,2=")
private String STATUS;
/** 创建时间 */

View File

@ -62,7 +62,7 @@ public class DrawInfo extends DrawRule
private Date LASTUPDATETIMESTAMP;
/** 状态 */
@Excel(name = "状态" ,readConverterExp="1=启用,2=")
@Excel(name = "状态" ,readConverterExp="1=启用,2=")
private String STATUS;
/** 是否需要更新缓存 */

View File

@ -110,7 +110,7 @@
<div class="form-group">
<label class="col-sm-4 control-label is-required">时间段限制次数:</label>
<div class="col-sm-8">
<input name="DAILYNUMBER" placeholder="活动名称" class="form-control" type="text" maxlength="30">
<input name="DAILYNUMBER" placeholder="时间段限制次数" class="form-control" type="text" maxlength="30">
</div>
</div>
</div>

View File

@ -14,7 +14,7 @@
<label class="col-sm-4 control-label is-required">奖项名称:</label>
<div class="col-sm-8">
<select name="PRIZELEVEL" class="form-control" th:with="type=${@dict.getType('prizeLevel')}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{PRIZELEVEL}"></option>
</select>
</div>
</div>
@ -71,7 +71,7 @@
<label class="col-sm-4 control-label is-required">奖品发放制度:</label>
<div class="col-sm-8">
<select name="AWARDTYPE" class="form-control" th:with="type=${@dict.getType('AWARDTYPE')}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{AWARDTYPE}"></option>
</select>
</div>
</div>
@ -91,7 +91,7 @@
<label class="col-sm-4 control-label is-required">领取方式:</label>
<div class="col-sm-8">
<select name="AWARDMETHOD" class="form-control" th:with="type=${@dict.getType('AWARDMETHOD')}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{AWARDMETHOD}"></option>
</select>
</div>
</div>
@ -101,7 +101,7 @@
<label class="col-sm-4 control-label is-required">状态:</label>
<div class="col-sm-8">
<select name="STATUS" class="form-control" th:with="type=${@dict.getType('start_stop')}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{STATUS}"></option>
</select>
</div>
</div>

View File

@ -112,7 +112,7 @@
<div class="form-group">
<label class="col-sm-4 control-label is-required">时间段限制次数:</label>
<div class="col-sm-8">
<input name="DAILYNUMBER" th:field="*{DAILYNUMBER}" placeholder="活动名称" class="form-control" type="text" maxlength="30">
<input name="DAILYNUMBER" th:field="*{DAILYNUMBER}" placeholder="时间段限制次数" class="form-control" type="text" maxlength="30">
</div>
</div>
</div>