county.js
3.8 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
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
var Controller = {
index: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
index_url: 'reservoir/county/index' + location.search,
add_url: 'reservoir/county/add',
edit_url: 'reservoir/county/edit',
del_url: 'reservoir/county/del',
multi_url: 'reservoir/county/multi',
import_url: 'reservoir/county/import',
table: 'reservoir_county',
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.index_url,
pk: 'id',
sortName: 'id',
columns: [
[
{checkbox: true},
{field: 'id', title: __('Id')},
{field: 'reservoirprovince.name', title: '省'+__('Reservoirprovince.name'), operate: 'LIKE'},
{field: 'reservoirstate.name', title: '州'+__('Reservoirstate.name'), operate: 'LIKE'},
{field: 'name', title: __('Name'), operate: 'LIKE'},
// {field: 'state_id', title: __('State_id')},
// {field: 'province_id', title: __('Province_id')},
{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: 'sendmessage',
title: __('进入县市页面'),
classname: 'btn btn-xs btn-success btn-dialog jump',
icon: 'fa fa-file-text'
}
] ,formatter: Table.api.formatter.operate}
]
]
});
// 为表格绑定事件
Table.api.bindevent(table);
$('#table').on('click',".jump",function(e){
var that = this;
var options = $.extend({}, $(that).data() || {});
var row = {};
if (typeof options.tableId !== 'undefined') {
var index = parseInt(options.rowIndex);
var data = $("#" + options.tableId).bootstrapTable('getData');
row = typeof data[index] !== 'undefined' ? data[index] : {};
}
window.open(window.location.protocol+'//'+window.location.hostname+'/dist#mymap?id='+row.id);
return false;
})
},
add: function () {
$("#c-province_id").on("change",function(){
$("#c-state_id").selectPageClear();
});
$("#c-state_id").data("params", function (obj) {
return {custom: {province_id: $("#c-province_id").val()}};
});
Controller.api.bindevent();
},
edit: function () {
$("#c-province_id").on("change",function(){
$("#c-state_id").selectPageClear();
});
$("#c-state_id").data("params", function (obj) {
return {custom: {province_id: $("#c-province_id").val()}};
});
Controller.api.bindevent();
},
api: {
bindevent: function () {
Form.api.bindevent($("form[role=form]"));
}
}
};
return Controller;
});