cnbsin.js
4.0 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
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
var Controller = {
index: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
index_url: 'wrp/rsr/cnbsin/index' + location.search,
add_url: 'wrp/rsr/cnbsin/add',
edit_url: 'wrp/rsr/cnbsin/edit',
del_url: 'wrp/rsr/cnbsin/del',
multi_url: 'wrp/rsr/cnbsin/multi',
import_url: 'wrp/rsr/cnbsin/import',
table: 'rsr_cnbsin',
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.index_url,
pk: 'ID',
sortName: 'ID',
columns: [
[
{checkbox: true},
{field: 'ID', title: __('Id')},
{field: 'RSCD', title: __('Rscd')},
{field: 'STDT', title: __('Stdt')},
{field: 'CNTP', title: __('Cntp'), searchList: {"1":__('Cntp 1'),"2":__('Cntp 2'),"3":__('Cntp 3'),"4":__('Cntp 4')}, formatter: Table.api.formatter.normal},
{field: 'DSUN', title: __('Dsun')},
{field: 'DSUNQL', title: __('Dsunql'), searchList: {"1":__('Dsunql 1'),"2":__('Dsunql 2'),"3":__('Dsunql 3'),"9":__('Dsunql 9')}, formatter: Table.api.formatter.normal},
{field: 'PRDSAPDP', title: __('Prdsapdp')},
{field: 'PRDSAPFL', title: __('Prdsapfl')},
{field: 'PRDSAPDT', title: __('Prdsapdt')},
{field: 'PRTTIN', title: __('Prttin'), operate:'BETWEEN'},
{field: 'DSIMEL', title: __('Dsimel'), operate:'BETWEEN'},
{field: 'ACIMEL', title: __('Acimel'), operate:'BETWEEN'},
{field: 'DSIMAM', title: __('Dsimam'), operate:'BETWEEN'},
{field: 'ACIMAM', title: __('Acimam'), operate:'BETWEEN'},
{field: 'PRLGENUN', title: __('Prlgenun')},
{field: 'CMUN', title: __('Cmun')},
{field: 'BDST', title: __('Bdst'), searchList: {"1":__('Bdst 1'),"2":__('Bdst 2'),"3":__('Bdst 3'),"9":__('Bdst 9')}, formatter: Table.api.formatter.normal},
{field: 'BDPR', title: __('Bdpr'), operate:'BETWEEN'},
{field: 'SPUN', title: __('Spun'), operate: 'LIKE'},
{field: 'SPUNQL', title: __('Spunql'), searchList: {"1":__('Spunql 1'),"2":__('Spunql 2'),"3":__('Spunql 3'),"9":__('Spunql 9')}, formatter: Table.api.formatter.normal},
{field: 'CNUN', title: __('Cnun'), operate: 'LIKE'},
{field: 'CNUNQL', title: __('Cnunql'), searchList: {"1":__('Cnunql 1'),"2":__('Cnunql 2'),"3":__('Cnunql 3'),"4":__('Cnunql 4'),"9":__('Cnunql 9')}, formatter: Table.api.formatter.normal},
{field: 'QLSPUN', title: __('Qlspun'), operate: 'LIKE'},
{field: 'DTUPDT', title: __('Dtupdt')},
{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;
});