sendMessage.js
1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
var sendMessage = function(){
return{
/**查询开户验证码*/
searchMessage: function(){
$('#data-grid').datagrid({
url: '/sendMessage/searchList',
queryParams : App.dataGridQueryParams('search-form')
});
},
send: function() {
$("#add-form").form("clear");
$('#add_dialog').dialog('open');
}
}}();
$(function(){
$("#data-grid").datagrid({
url:'/sendMessage/searchList',
fitColumns:true,
singleSelect:true,
fit:true,
pagination : true,
rownumbers:true,
toolbar:'#toolbar',
selectOnCheck:true,
pageSize: 20,
columns:[[
{field:'phone_number',title:'手机号'},
{field:'message',title:'消息内容'},
{field:'send_result',title:'发送结果',formatter:function(data){
if(data>='0'){
return '成功';
}else{
return '失败';
}
}},
{field:'create_at',title:'发送时间'
}
]]
});
$('#add_dialog').dialog({
title : '入库数据录入',
width : 450,
height : 350,
closed : true,
buttons : [ {
text : '发送',
handler : function() {
$('#add-form').form('submit', {
url : '/sendMessage/send',
onSubmit : function(param) {
return $(this).form('validate');
},
success : function(data) {
if(data != "发送成功" ){
alert(data);
}else{
$('#add_dialog').dialog('close');
$('#data-grid').datagrid('reload');
$.messager.show({
title: '信息',
msg: data
});
}
},
error : function() {
}
});
}
}, {
text : '关闭',
handler : function() {
$('#add_dialog').dialog('close');
}
} ]
});
})