pptn.js
2.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
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
var Controller = {
index: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
index_url: 'wrp/st/pptn/index' + location.search,
add_url: 'wrp/st/pptn/add',
edit_url: 'wrp/st/pptn/edit',
del_url: 'wrp/st/pptn/del',
multi_url: 'wrp/st/pptn/multi',
import_url: 'wrp/st/pptn/import',
table: 'st_pptn_r',
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.index_url,
pk: 'ID',
sortName: 'ID',
columns: [
[
{checkbox: true},
{field: 'ID', title: __('Id')},
{field: 'STCD', title: __('Stcd')},
{field: 'TM', title: __('Tm')},
{field: 'DRP', title: __('Drp'), operate:'BETWEEN'},
{field: 'INTV', title: __('Intv'), operate: 'LIKE'},
{field: 'PDR', title: __('Pdr'), operate: 'LIKE'},
{field: 'DYP', title: __('Dyp'), operate:'BETWEEN'},
{field: 'WTH', title: __('Wth'), searchList: {"5":__('Wth 5'),"6":__('Wth 6'),"7":__('Wth 7'),"8":__('Wth 8'),"9":__('Wth 9')}, formatter: Table.api.formatter.normal},
{field: 'RESERVOIR_ID', title: __('Reservoir_id')},
{field: 'reservoirlist.name', title: __('Reservoirlist.name'), operate: 'LIKE'},
{field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, 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;
});