hych.js
4.3 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
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
var Controller = {
index: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
index_url: 'wrp/rsr/hych/index' + location.search,
add_url: 'wrp/rsr/hych/add',
edit_url: 'wrp/rsr/hych/edit',
del_url: 'wrp/rsr/hych/del',
multi_url: 'wrp/rsr/hych/multi',
import_url: 'wrp/rsr/hych/import',
table: 'rsr_hych',
}
});
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: 'CNCTAR', title: __('Cnctar'), operate:'BETWEEN'},
{field: 'RVCRLEN', title: __('Rvcrlen'), operate:'BETWEEN'},
{field: 'RVCRGR', title: __('Rvcrgr'), operate:'BETWEEN'},
{field: 'AVANPRAM', title: __('Avanpram'), operate:'BETWEEN'},
{field: 'AVANRNAM', title: __('Avanrnam'), operate:'BETWEEN'},
{field: 'AVANSDAM', title: __('Avansdam'), operate:'BETWEEN'},
{field: 'MYAVGMINTP', title: __('Myavgmintp'), operate:'BETWEEN'},
{field: 'DSRCIN', title: __('Dsrcin'), operate:'BETWEEN'},
{field: 'DSPKFL', title: __('Dspkfl'), operate:'BETWEEN'},
{field: 'DSFLVLONDY', title: __('Dsflvlondy'), operate:'BETWEEN'},
{field: 'DSFLVLTHDY', title: __('Dsflvlthdy'), operate:'BETWEEN'},
{field: 'CHRCIN', title: __('Chrcin'), operate:'BETWEEN'},
{field: 'CHPKFL', title: __('Chpkfl'), operate:'BETWEEN'},
{field: 'CHFLDR', title: __('Chfldr'), operate:'BETWEEN'},
{field: 'CHFLVL', title: __('Chflvl'), operate:'BETWEEN'},
{field: 'RSRRGTPFM', title: __('Rsrrgtpfm'), searchList: {"1":__('Rsrrgtpfm 1'),"2":__('Rsrrgtpfm 2'),"3":__('Rsrrgtpfm 3'),"4":__('Rsrrgtpfm 4'),"9":__('Rsrrgtpfm 9')}, formatter: Table.api.formatter.normal},
{field: 'CHFLLV', title: __('Chfllv'), operate:'BETWEEN'},
{field: 'DSFLLV', title: __('Dsfllv'), operate:'BETWEEN'},
{field: 'FLCNHGWL', title: __('Flcnhgwl'), operate:'BETWEEN'},
{field: 'MJFLSSCNWL', title: __('Mjflsscnwl'), operate:'BETWEEN'},
{field: 'NRSTLV', title: __('Nrstlv'), operate:'BETWEEN'},
{field: 'DDWL', title: __('Ddwl'), operate:'BETWEEN'},
{field: 'TTSTCP', title: __('Ttstcp'), operate:'BETWEEN'},
{field: 'FLSTCP', title: __('Flstcp'), operate:'BETWEEN'},
{field: 'FLCNSTCP', title: __('Flcnstcp'), operate:'BETWEEN'},
{field: 'ACSTCP', title: __('Acstcp'), operate:'BETWEEN'},
{field: 'DDSTCP', title: __('Ddstcp'), operate:'BETWEEN'},
{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;
});