|
@@ -19,6 +19,14 @@
|
|
<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}"></option>
|
|
</select>
|
|
</select>
|
|
</li>
|
|
</li>
|
|
|
|
+
|
|
|
|
+ <li>
|
|
|
|
+ <p>种类:</p>
|
|
|
|
+ <select name="form" th:with="type=${@dict.getType('wx_send_message_form')}">
|
|
|
|
+ <option value="">所有</option>
|
|
|
|
+ <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
|
+ </select>
|
|
|
|
+ </li>
|
|
<li class="select-time">
|
|
<li class="select-time">
|
|
<label>创建时间: </label>
|
|
<label>创建时间: </label>
|
|
<input type="text" class="time-input" id="startTime" placeholder="开始时间" name="params[beginTime]"/>
|
|
<input type="text" class="time-input" id="startTime" placeholder="开始时间" name="params[beginTime]"/>
|
|
@@ -47,6 +55,7 @@
|
|
<script th:inline="javascript">
|
|
<script th:inline="javascript">
|
|
|
|
|
|
var successDict = [[${@dict.getType('sys_success')}]];//销售人员等级
|
|
var successDict = [[${@dict.getType('sys_success')}]];//销售人员等级
|
|
|
|
+ var messageForm = [[${@dict.getType('wx_send_message_form')}]];
|
|
var prefix = ctx + "wxmessage";
|
|
var prefix = ctx + "wxmessage";
|
|
|
|
|
|
|
|
|
|
@@ -68,27 +77,44 @@
|
|
},
|
|
},
|
|
{
|
|
{
|
|
field : 'toUser',
|
|
field : 'toUser',
|
|
- title : '发送给的用户'
|
|
|
|
|
|
+ title : '发送给的用户',
|
|
|
|
+ width : '100px',
|
|
|
|
+ formatter:function (value, row, index) {
|
|
|
|
+ // return $.table.tooltip(value,15)
|
|
|
|
+ return '<div style="width: 300px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" title='+value+'>'+value+'</div>'
|
|
|
|
+ }
|
|
},
|
|
},
|
|
{
|
|
{
|
|
field : 'isSuccess',
|
|
field : 'isSuccess',
|
|
title : '是否发送成功',
|
|
title : '是否发送成功',
|
|
formatter: function(value, row, index) {
|
|
formatter: function(value, row, index) {
|
|
return $.table.selectDictLabel(successDict, value);
|
|
return $.table.selectDictLabel(successDict, value);
|
|
- }
|
|
|
|
|
|
+ },
|
|
|
|
+ width : '100px'
|
|
},
|
|
},
|
|
{
|
|
{
|
|
field : 'sendText',
|
|
field : 'sendText',
|
|
- title : '发送的文本'
|
|
|
|
|
|
+ title : '发送的文本',
|
|
|
|
+ width : '200px'
|
|
},
|
|
},
|
|
|
|
+ {
|
|
|
|
+ field : 'form',
|
|
|
|
+ title : '种类',
|
|
|
|
+ formatter: function(value, row, index) {
|
|
|
|
+ return $.table.selectDictLabel(messageForm, value);
|
|
|
|
+ },
|
|
|
|
+ width : '100px'
|
|
|
|
+ },
|
|
{
|
|
{
|
|
field : 'type',
|
|
field : 'type',
|
|
title : '类型',
|
|
title : '类型',
|
|
- visible:false
|
|
|
|
|
|
+ visible:false,
|
|
|
|
+ width : '100px'
|
|
},
|
|
},
|
|
{
|
|
{
|
|
field : 'createTime',
|
|
field : 'createTime',
|
|
- title : '创建时间'
|
|
|
|
|
|
+ title : '创建时间',
|
|
|
|
+ width : '150px'
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '操作',
|
|
title: '操作',
|
|
@@ -97,7 +123,8 @@
|
|
var actions = [];
|
|
var actions = [];
|
|
actions.push('<a class="btn btn-success btn-xs " href="javascript:void(0)" onclick="$.operate.edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>查看</a> ');
|
|
actions.push('<a class="btn btn-success btn-xs " href="javascript:void(0)" onclick="$.operate.edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>查看</a> ');
|
|
return actions.join('');
|
|
return actions.join('');
|
|
- }
|
|
|
|
|
|
+ },
|
|
|
|
+ width : '300px'
|
|
}]
|
|
}]
|
|
};
|
|
};
|
|
$.table.init(options);
|
|
$.table.init(options);
|