1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'userotherconfirm/index' + location.search,
- add_url: 'userotherconfirm/add',
- edit_url: 'userotherconfirm/edit',
- del_url: 'userotherconfirm/del',
- multi_url: 'userotherconfirm/multi',
- import_url: 'userotherconfirm/import',
- table: 'user_other_confirm',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'id',
- fixedColumns: true,
- fixedRightNumber: 1,
- columns: [
- [
- {checkbox: true},
- {field: 'id', title: __('Id')},
- {field: 'user_id', title: __('User_id')},
- {field: 'user.nickname', title: __('User.nickname'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
- {field: 'user.mobile', title: __('User.mobile'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
- {field: 'user.avatar', title: __('User.avatar'), operate: 'LIKE', events: Table.api.events.image, formatter: Table.api.formatter.image},
- {field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1'),"2":__('Status 2')}, formatter: Table.api.formatter.status},
- // {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
- // {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
- {field: 'passport_familyname', title: __('Passport_familyname'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
- {field: 'passport_givenname', title: __('Passport_givenname'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
- {field: 'passport_no', title: __('Passport_no'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
- {field: 'passport_enddate', title: __('Passport_enddate'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
- {field: 'passport_images', title: __('Passport_images'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.images},
- {field: 'ga_familyname', title: __('Ga_familyname'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
- {field: 'ga_givenname', title: __('Ga_givenname'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
- {field: 'ga_no', title: __('Ga_no'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
- {field: 'ga_startdate', title: __('Ga_startdate'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
- {field: 'ga_enddate', title: __('Ga_enddate'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
- {field: 'ga_juzhu_images', title: __('Ga_juzhu_images'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.images},
- {field: 'ga_tongx_images', title: __('Ga_tongx_images'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.images},
- {field: 'tw_juzhu_images', title: __('Tw_juzhu_images'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.images},
- {field: 'tw_tongx_images', title: __('Tw_tongx_images'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.images},
- {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;
- });
|