article_report.js
6.1 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
var Controller = {
index: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
index_url: 'article_report/index' + location.search,
add_url: 'article_report/add',
edit_url: 'article_report/edit',
del_url: 'article_report/del',
multi_url: 'article_report/multi',
import_url: 'article_report/import',
table: 'article_report',
article_edit_url:"article/edit",
article_del_url:"article/del"
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.index_url,
pk: 'id',
sortName: 'id',
search:false,
visible: false,
showToggle: false,
showColumns: false,
howExport: false,
operate: false,
columns: [
[
{checkbox: true},
{field: 'id', title: __('Id')},
//{field: 'user_id', title: __('User_id')},
{field: 'avatar', title: __('Avatar'), operate: 'LIKE', events: Table.api.events.image, formatter: Table.api.formatter.image},
{field: 'nickname', title: __('Nickname'), operate: 'LIKE'},
{field: 'username', title: __('Username'), operate: 'LIKE'},
{field: 'mobile', title: __('Mobile'), operate: 'LIKE'},
{field: 'article_id', title: __('Article_id')},
{field: 'content', title: __('Content'), operate: 'LIKE'},
{field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1')}, formatter: Table.api.formatter.status},
{field: 'message', title: __('Message'), operate: 'LIKE'},
//{field: 'report_type_id', title: __('Report_type_id')},
{field: 'report_type_name', title: __('Report_type_name'), operate: 'LIKE'},
{field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
//{field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
{field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate,buttons: [
{
name: 'edit_article',
text: __('查看动态'),
title: __('查看动态'),
classname: 'btn btn-xs btn-success btn-dialog',
icon: 'fa fa-unlock',
url:function (data){
console.log(Config.url + $.fn.bootstrapTable.defaults.extend.article_edit_url+"/ids/"+data.article_id)
return Config.url + $.fn.bootstrapTable.defaults.extend.article_edit_url+"/ids/"+data.article_id;
},
// url:"article/edit2/article_id/{article_id}",
callback: function (data) {
Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
},
visible: function (row) {
return true;
}
},
{
name: 'ajax',
text: __('删除动态'),
classname: 'btn btn-xs btn-danger btn-magic btn-ajax',
icon: 'fa fa-window-close',
//url: 'example/bootstraptable/detail',
confirm: '您确认删除动态吗!',
url:function (data){
console.log(Config.url + $.fn.bootstrapTable.defaults.extend.article_del_url+"/ids/"+data.article_id)
return Config.url + $.fn.bootstrapTable.defaults.extend.article_del_url+"/ids/"+data.article_id;
},
success: function (data, ret) {
Layer.alert(ret.msg + ",返回数据:" + JSON.stringify(data));
//如果需要阻止成功提示,则必须使用return false;
//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;
});