活动管理-抽奖次数消费信息列表修改
This commit is contained in:
parent
f4d45fc43d
commit
0ca8dfadca
|
|
@ -18,32 +18,35 @@
|
||||||
<label>任务流水:</label>
|
<label>任务流水:</label>
|
||||||
<input type="text" name="TASKID"/>
|
<input type="text" name="TASKID"/>
|
||||||
</li>
|
</li>
|
||||||
|
<!-- <li>-->
|
||||||
|
<!-- <label>用户标识:</label>-->
|
||||||
|
<!-- <input type="text" name="USERID"/>-->
|
||||||
|
<!-- </li>-->
|
||||||
<li>
|
<li>
|
||||||
<label>用户标识:</label>
|
<label>次数类型:</label>
|
||||||
<input type="text" name="USERID"/>
|
<select name="TYPE" th:with="type=${@dict.getType('drawType')}">
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<label>赠送次数类型:</label>
|
|
||||||
<select name="TYPE">
|
|
||||||
<option value="">所有</option>
|
<option value="">所有</option>
|
||||||
<option value="-1">代码生成请选择字典属性</option>
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
||||||
</select>
|
</select>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<!-- <li>-->
|
||||||
<label>使用次数:</label>
|
<!-- <label>使用次数:</label>-->
|
||||||
<input type="text" name="CONSUMENUMBER"/>
|
<!-- <input type="text" name="CONSUMENUMBER"/>-->
|
||||||
</li>
|
<!-- </li>-->
|
||||||
<li>
|
<!-- <li>-->
|
||||||
<label>使用流水:</label>
|
<!-- <label>使用流水:</label>-->
|
||||||
<input type="text" name="TRANSEQNO"/>
|
<!-- <input type="text" name="TRANSEQNO"/>-->
|
||||||
</li>
|
<!-- </li>-->
|
||||||
<li>
|
<!-- <li>-->
|
||||||
<label>使用主键:</label>
|
<!-- <label>使用主键:</label>-->
|
||||||
<input type="text" name="TRADEORDERID"/>
|
<!-- <input type="text" name="TRADEORDERID"/>-->
|
||||||
</li>
|
<!-- </li>-->
|
||||||
<li>
|
<li>
|
||||||
<label>状态:</label>
|
<label>状态:</label>
|
||||||
<input type="text" name="STATE"/>
|
<select name="STATE" th:with="type=${@dict.getType('status')}">
|
||||||
|
<option value="">所有</option>
|
||||||
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
||||||
|
</select>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i> 搜索</a>
|
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i> 搜索</a>
|
||||||
|
|
@ -78,6 +81,8 @@
|
||||||
var editFlag = [[${@permission.hasPermi('activity:consume:edit')}]];
|
var editFlag = [[${@permission.hasPermi('activity:consume:edit')}]];
|
||||||
var removeFlag = [[${@permission.hasPermi('activity:consume:remove')}]];
|
var removeFlag = [[${@permission.hasPermi('activity:consume:remove')}]];
|
||||||
var prefix = ctx + "activity/consume";
|
var prefix = ctx + "activity/consume";
|
||||||
|
var drawTypes = [[${@dict.getType('drawType')}]];
|
||||||
|
var STATEDatas = [[${@dict.getType('status')}]];
|
||||||
|
|
||||||
$(function() {
|
$(function() {
|
||||||
var options = {
|
var options = {
|
||||||
|
|
@ -113,7 +118,10 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
field: 'type',
|
field: 'type',
|
||||||
title: '赠送次数类型'
|
title: '赠送次数类型',
|
||||||
|
formatter: function(value, row, index) {
|
||||||
|
return $.table.selectDictLabel(drawTypes, value);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
field: 'consumenumber',
|
field: 'consumenumber',
|
||||||
|
|
@ -129,7 +137,10 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
field: 'state',
|
field: 'state',
|
||||||
title: '状态'
|
title: '状态',
|
||||||
|
formatter: function(value, row, index) {
|
||||||
|
return $.table.selectDictLabel(STATEDatas, value);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
// {
|
// {
|
||||||
// field: 'createtimestamp',
|
// field: 'createtimestamp',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue