| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'qingdong/general/business/index',
- edit_url: 'qingdong/general/business/edit',
- }
- });
- var table = $("#table");
- //在表格内容渲染完成后回调的事件
- table.on('post-body.bs.table', function (e, json) {
- $("tbody tr[data-index]", this).each(function () {
- if (parseInt($("td:eq(1)", this).text()) == Config.admin.id) {
- $("input[type=checkbox]", this).prop("disabled", true);
- }
- });
- });
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- columns: [
- [
- {field: 'state', checkbox: true, },
- {field: 'admininfo.username', title: __('Username'), operate:false},
- {field: 'sign_no', title:'商户标识'},
- {field: 'name', title:'公司名称'},
- {field: 'subname', title:'公司简称'},
- {field: 'mobile', title: '联系电话'},
- {field: 'company_type', title: '企业类型'},
- {field: 'industry', title: '所属行业'},
- {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: function (value, row, index) {
- $(table).data("operate-del",null);
- return Table.api.formatter.operate.call(this, value, row, index);
- }}
- ]
- ],
- search: false,
- //启用普通表单搜索
- commonSearch: true,
- //显示导出按钮
- showExport: false,
- searchFormVisible: true
- });
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- add: function () {
- Form.api.bindevent($("form[role=form]"));
- },
- edit: function () {
- Form.api.bindevent($("form[role=form]"));
- }
- };
- return Controller;
- });
|