define(['jquery', 'bootstrap', 'backend', 'table', 'form', 'adminlte'], function ($, undefined, Backend, Table, Form, Adminlte) { var Controller = { index: function () { // 初始化表格参数配置 Table.api.init({ extend: { index_url: 'wanlshop/wechat/response/index', add_url: 'wanlshop/wechat/response/add', edit_url: 'wanlshop/wechat/response/edit', del_url: 'wanlshop/wechat/response/del', multi_url: 'wanlshop/wechat/response/multi', } }); var table = $("#table"); // 初始化表格 table.bootstrapTable({ url: $.fn.bootstrapTable.defaults.extend.index_url, sortName: 'id', columns: [ [ {field: 'state', checkbox: true,}, {field: 'id', title: 'ID'}, {field: 'type', title: __('Type')}, {field: 'title', title: __('Resource title')}, {field: 'eventkey', title: __('Event key')}, {field: 'status', title: __('Status'), formatter: Table.api.formatter.status, operate: false}, {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} ] ] }); // 为表格绑定事件 Table.api.bindevent(table); }, select: function () { // 初始化表格参数配置 Table.api.init({ extend: { index_url: 'wanlshop/wechat/response/index', } }); var table = $("#table"); // 初始化表格 table.bootstrapTable({ url: $.fn.bootstrapTable.defaults.extend.index_url, sortName: 'id', columns: [ [ {field: 'state', checkbox: true,}, {field: 'id', title: 'ID'}, {field: 'type', title: __('Type')}, {field: 'title', title: __('Title')}, {field: 'eventkey', title: __('Event key')}, {field: 'status', title: __('Status'), formatter: Table.api.formatter.status, operate: false}, { field: 'operate', title: __('Operate'), events: { 'click .btn-chooseone': function (e, value, row, index) { Fast.api.close(row); }, }, formatter: function () { return ' ' + __('Choose') + ''; } } ] ] }); // 为表格绑定事件 Table.api.bindevent(table); }, add: function () { Form.api.bindevent($("form[role=form]"), function (data) { Fast.api.close(data); }); Controller.api.bindevent(); }, edit: function () { Form.api.bindevent($("form[role=form]")); Controller.api.bindevent(); }, api: { bindevent: function () { var getAppFileds = function (id) { var app = apps[id]; var appConfig = app['config']; var str = ''; for (var i in appConfig) { var type = appConfig[i]['type']; var field = appConfig[i]['field']; var caption = appConfig[i]['caption']; var defaultvalue = typeof appConfig[i]['defaultvalue'] != 'undefined' ? appConfig[i]['defaultvalue'] : ''; if (type == 'text' || type == 'textarea') { if (type == 'textarea') { str += '