1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'doctorwechat/index' + location.search,
- add_url: 'doctorwechat/add',
- edit_url: 'doctorwechat/edit',
- del_url: 'doctorwechat/del',
- multi_url: 'doctorwechat/multi',
- import_url: 'doctorwechat/import',
- table: 'doctor_wechat',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'id',
- columns: [
- [
- // {checkbox: true},
- // {field: 'id', title: __('Id')},
- {field: 'doctor_id', title: __('Doctor_id')},
- {field: 'doctor.avatar', title: __('Doctor.avatar'), operate: 'LIKE', events: Table.api.events.image, formatter: Table.api.formatter.image},
- {field: 'doctor.mobile', title: __('Doctor.mobile'), operate: 'LIKE'},
- {field: 'realname', title: __('Realname'), operate: 'LIKE'},
- {field: 'pay_no', title: __('Pay_no'), operate: 'LIKE'},
- {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, 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;
- });
|