define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { var Controller = { index: function () { // 初始化表格参数配置 Table.api.init({ extend: { index_url: 'help/family/index' + location.search, add_url: 'help/family/add', edit_url: 'help/family/edit', del_url: 'help/family/del', multi_url: 'help/family/multi', import_url: 'help/family/import', table: 'help_family', } }); var table = $("#table"); // 初始化表格 table.bootstrapTable({ url: $.fn.bootstrapTable.defaults.extend.index_url, pk: 'id', sortName: 'id', columns: [ [ {checkbox: true}, {field: 'id', title: __('Id')}, {field: 'cid', title: __('Cid')}, {field: 'help_id', title: __('Help_id')}, {field: 'full_name', title: __('Full_name'), operate: 'LIKE'}, {field: 'relation', title: __('Relation'), operate: 'LIKE'}, {field: 'id_card', title: __('Id_card'), operate: 'LIKE'}, {field: 'work_unit', title: __('Work_unit'), operate: 'LIKE'}, {field: 'healthy', title: __('Healthy'), operate: 'LIKE'}, {field: 'monthly_income', title: __('Monthly_income'), operate: 'LIKE'}, {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} ] ] }); // 为表格绑定事件 Table.api.bindevent(table); }, add: function () { $("#c-help_id").data("params", function (obj) { return {custom: {cid: $("#c-cid").val()}}; }); $("#c-user_id").data("params", function (obj) { return {custom: {cid: $("#c-cid").val()}}; }); Controller.api.bindevent(); }, edit: function () { $("#c-help_id").data("params", function (obj) { return {custom: {cid: $("#c-cid").val()}}; }); $("#c-user_id").data("params", function (obj) { return {custom: {cid: $("#c-cid").val()}}; }); Controller.api.bindevent(); }, api: { bindevent: function () { Form.api.bindevent($("form[role=form]")); } } }; return Controller; });