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

    var Controller = {
        index: function () {
            // 初始化表格参数配置
            Table.api.init({
                extend: {
                    index_url: 'mobile/company_job/index' + location.search,
                    add_url: 'mobile/company_job/add',
                    edit_url: 'mobile/company_job/edit',
                    del_url: 'mobile/company_job/del',
                    multi_url: 'mobile/company_job/multi',
					examine_url: 'mobile/company_job/examine',
                    table: 'mobile_company_job',
                }
            });

            var table = $("#table");

            // 初始化表格
            table.bootstrapTable({
                url: $.fn.bootstrapTable.defaults.extend.index_url,
                pk: 'id',
                sortName: 'weigh',
                columns: [
                    [
                        {checkbox: true},
                        {field: 'id', title: __('Id')},
						{field: 'company.name', title: __('发布公司')},
                        {field: 'name', title: __('Name')},
                        {field: 'type', title: __('Type'), searchList: {"1":__('Type 1'),"2":__('Type 2'),"3":__('Type 3')}, formatter: Table.api.formatter.normal},
                        {field: 'start_time', title: __('Start_time'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
                        {field: 'end_time', title: __('End_time'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
                        {field: 'salary', title: __('Salary')},
                        {field: 'address', title: __('Address')},
                        {field: 'house_number', title: __('House_number')},
                        {field: 'phone', title: __('Phone')},
                        {field: 'description', title: __('Description')},
                        {field: 'other_desc', title: __('Other_desc')},
                        {field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1')}, formatter: Table.api.formatter.status},
                        {field: 'weigh', title: __('Weigh')},
                        {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate,
                            buttons: [
                                {
                                    name: 'examine',
                                    text: '通过',
                                    title: '通过',
                                    classname: 'btn btn-xs btn-primary btn-ajax',
                                    icon: '',
                                    url: $.fn.bootstrapTable.defaults.extend.examine_url+'/status/1',
                                    confirm: '是否确认通过审核?',
                                    visible:function (row) {
                                        if(row.status == 0){
                                            return true;
                                        }else{
                                            return false;
                                        }
                                    },
                                    success: function (data) {
                                        table.bootstrapTable('refresh');
                                    }
                                },
                            ], 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;
});