task.js
4.4 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
83
84
85
86
87
88
89
90
91
92
93
94
95
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
var Controller = {
index: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
index_url: 'inspection/task/index' + location.search,
add_url: 'inspection/task/add',
edit_url: 'inspection/task/edit',
del_url: 'inspection/task/del',
multi_url: 'inspection/task/multi',
import_url: 'inspection/task/import',
table: 'inspection_task',
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.index_url,
pk: 'id',
sortName: 'id',
columns: [
[
{checkbox: true},
{field: 'id', title: __('Id')},
{field: 'title', title: __('标题'), operate: 'LIKE'},
{field: 'user_count',table:table,title: __('User_count'),events: Table.api.events.operate,
buttons: [
{
name: 'detail',
text:function (row) {
return '<span style="color:#e74c3c;">'+row.user_count+'</span>'
},
title:function (row) {
return "任务已读状态";
},
classname: 'btn-dialog',
url: function (row) {
return 'inspection/task/showLog/ids/'+row.id;
}
}
],
formatter: Table.api.formatter.buttons,
operate: false
},
// {field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1')}, formatter: Table.api.formatter.status},
{field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
{field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate,buttons: [
{
name: 'ajax',
title: __('事务推送至监管APP'),
classname: 'btn btn-xs btn-success btn-magic btn-ajax',
icon: 'fa fa-paper-plane',
confirm: '确认推送事务到监管APP?',
url: 'inspection/task/sendmessage',
success: function (data, ret) {
// Layer.alert(ret.msg + ",返回数据:" + JSON.stringify(data));
// 如果需要阻止成功提示,则必须使用return false;
console.log(data, ret);
Layer.alert(ret.msg);
return false;
},
error: function (data, ret) {
console.log(data, ret);
Layer.alert(ret.msg);
return false;
}
}
], formatter: Table.api.formatter.operate
}
]
]
});
// 为表格绑定事件
Table.api.bindevent(table);
},
add: function () {
Controller.api.bindevent();
},
edit: function () {
Controller.api.bindevent();
},
api: {
bindevent: function () {
Form.api.bindevent($("form[role=form]"));
}
}
};
return Controller;
});