county.js 3.8 KB
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;
});