活动管理-下拉框修改

This commit is contained in:
dy 2021-03-31 15:57:23 +08:00
parent 4ff427f9fb
commit 184363a90b
2 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@
<!-- </li>-->
<li>
<label>发奖结果:</label>
<select name="AWARDRESULT" th:with="type=${@dict.getType('drawResult')}" style="width: 80px">
<select name="AWARDRESULT" th:with="type=${@dict.getType('drawResult')}" style="width: 100px">
<option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}"
th:value="${dict.dictValue}"></option>
@ -80,7 +80,7 @@
</li>
<li>
<label>奖品类型:</label>
<select name="PRIZETYPE" th:with="type=${@dict.getType('prizeType')}" style="width: 80px">
<select name="PRIZETYPE" th:with="type=${@dict.getType('prizeType')}" style="width: 120px">
<option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}"
th:value="${dict.dictValue}"></option>

View File

@ -24,7 +24,7 @@
</li>
<li>
<label>奖品类型:</label>
<select name="PRIZETYPE" th:with="type=${@dict.getType('prizeType')}" style="width: 100px">
<select name="PRIZETYPE" th:with="type=${@dict.getType('prizeType')}" style="width: 120px">
<option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>