riverlist.js 6.8 KB
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {

    var Controller = {
        index: function () {
            // 初始化表格参数配置
            Table.api.init({
                extend: {
                    index_url: 'river/riverlist/index' + location.search,
                    add_url: 'river/riverlist/add',
                    setadmin_url: 'river/riverlist/setadmin',
                    edit_url: 'river/riverlist/edit',
                    del_url: 'river/riverlist/del',
                    multi_url: 'river/riverlist/multi',
                    import_url: 'river/riverlist/import',
                    table: 'river_list',
                }
            });

            var table = $("#table");

            // 初始化表格
            table.bootstrapTable({
                url: $.fn.bootstrapTable.defaults.extend.index_url,
                pk: 'id',
                sortName: 'id',
                columns: [
                    [
                        {checkbox: true},
                        {field: 'id', title: __('Id')},
                        {field: 'river_code', title: __('River_code'), operate: 'LIKE'},
                        {field: 'name', title: __('Name'), operate: 'LIKE'},
                        {field: 'rivercat.name', title: __('分类'), operate: 'LIKE'},
                        {field: 'inspectiondepart.depart_name', title: __('部门'), operate: 'LIKE'},
                        {field: 'staff_name', title: __('河长'), operate: 'LIKE'},
                        {field: 'reservoirprovince.name', title: __('省'), operate: 'LIKE'},
                        {field: 'reservoirstate.name', title: __('州/市'), operate: 'LIKE'},
                        {field: 'reservoircounty.name', title: __('区/县'), operate: 'LIKE'},
                        {field: 'reservoirstreet.name', title: __('乡镇/街道'), operate: 'LIKE'},
                        {field: 'reservoirvillage.name', title: __('村/社'), operate: 'LIKE'},
                        {field: 'start_address', title: __('Start_address'), operate: 'LIKE'},
                        {field: 'end_address', title: __('End_address'), operate: 'LIKE'},
                        {field: 'banks_type', title: __('Banks_type'), operate: 'LIKE'},
                        {field: 'river_long', title: '长度(km)', operate: 'LIKE'},
                        {field: 'status', title: __('状态'), searchList: {"0":__('正常'),"1":__('隐藏')}, formatter: Table.api.formatter.normal},
                        {field: 'createtime', title: __('添加时间'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
                        {
                            field: 'operate',
                            title: __('Operate'),
                            table: table,
                            events: Table.api.events.operate,
                            buttons: [
                                {
                                    name: '',
                                    text: "指定河长",
                                    title: __('指定河长'),
                                    classname: 'btn btn-xs btn-primary btn-dialog',
                                    icon: 'fa fa-address-book',
                                    url: 'river/riverlist/setadmin?rid={id}'
                                }
            ] ,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()}};
            });
            $("#c-state_id").on("change", function () {
                $("#c-county_id").selectPageClear();
            });
            $("#c-county_id").data("params", function (obj) {
                return {custom: {state_id: $("#c-state_id").val()}};
            });
            $("#c-county_id").on("change", function () {
                $("#c-street_id").selectPageClear();
            });
            $("#c-street_id").data("params", function (obj) {
                return {custom: {county_id: $("#c-county_id").val()}};
            });
            $("#c-street_id").on("change", function () {
                $("#c-village_id").selectPageClear();
            });
            $("#c-village_id").data("params", function (obj) {
                return {custom: {street_id: $("#c-street_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()}};
            });
            $("#c-state_id").on("change", function () {
                $("#c-county_id").selectPageClear();
            });
            $("#c-county_id").data("params", function (obj) {
                return {custom: {state_id: $("#c-state_id").val()}};
            });
            $("#c-county_id").on("change", function () {
                $("#c-street_id").selectPageClear();
            });
            $("#c-street_id").data("params", function (obj) {
                return {custom: {county_id: $("#c-county_id").val()}};
            });
            $("#c-street_id").on("change", function () {
                $("#c-village_id").selectPageClear();
            });
            $("#c-village_id").data("params", function (obj) {
                return {custom: {street_id: $("#c-street_id").val()}};
            });
            Controller.api.bindevent();
        },
        setadmin:function(){
            Controller.api.bindevent();
        },
        api: {
            bindevent: function () {
                Form.api.bindevent($("form[role=form]"));
            }
        }
    };
    return Controller;
});