123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'users/index' + location.search,
- add_url: 'users/add',
- edit_url: 'users/edit',
- del_url: 'users/del',
- multi_url: 'users/multi',
- import_url: 'users/import',
- table: 'users',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'user_id',
- sortName: 'user_id',
- columns: [
- [
- {checkbox: true},
- {field: 'user_id', title: __('User_id'),operate:false},
- {field: 'user_name', title: __('User_name')},
- {field: 'user_image', title: __('User_image'), events: Table.api.events.image, formatter: Table.api.formatter.image,operate:false},
- {field: 'user_age', title: __('User_age')},
- {field: 'user_sex', title: __('User_sex')},
- {field: 'user_year_time', title: __('User_year_time')},
- {field: 'user_nation', title: __('User_nation')},
- {field: 'user_native', title: __('User_native')},
- {field: 'user_birthplace', title: __('User_birthplace')},
- {field: 'user_politics', title: __('User_politics')},
- {field: 'user_party_time', title: __('User_party_time')},
- {field: 'user_join_job_time', title: __('User_join_job_time')},
- {field: 'user_health', title: __('User_health')},
- {field: 'user_major', title: __('User_major')},
- {field: 'user_specialty', title: __('User_specialty')},
- {field: 'user_job_place', title: __('User_job_place')},
- {field: 'user_now_duty', title: __('User_now_duty')},
- {field: 'user_administrative_level', title: __('User_administrative_level')},
- {field: 'user_education_full', title: __('User_education_full')},
- {field: 'user_degree_full', title: __('User_degree_full')},
- {field: 'user_school_major_full', title: __('User_school_major_full')},
- {field: 'user_education_b', title: __('User_education_b')},
- {field: 'user_degree_b', title: __('User_degree_b')},
- {field: 'user_school_major_b', title: __('User_school_major_b')},
- {
- field: 'buttons',
- width: "120px",
- title: __('按钮组'),
- table: table,
- events: Table.api.events.operate,
- buttons: [
- {
- name: 'detail',
- text: __('查看社会关系'),
- title: __('查看社会关系'),
- classname: 'btn btn-xs btn-primary btn-dialog',
- icon: 'fa fa-list',
- url: 'Sociogram/index',
- callback: function (data) {
- Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
- },
- visible: function (row) {
- //返回true时按钮显示,返回false隐藏
- return true;
- }
- },
- {
- name: 'detail',
- text: __('编辑简历'),
- title: __('编辑简历'),
- classname: 'btn btn-xs btn-primary btn-dialog',
- icon: 'fa fa-list',
- url: 'Users/resume',
- callback: function (data) {
- Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
- },
- visible: function (row) {
- //返回true时按钮显示,返回false隐藏
- return true;
- }
- },
- // {
- // name: 'addtabs',
- // text: __('新选项卡中打开'),
- // title: __('新选项卡中打开'),
- // classname: 'btn btn-xs btn-warning btn-addtabs',
- // icon: 'fa fa-folder-o',
- // url: 'example/bootstraptable/detail'
- // }
- ],
- formatter: Table.api.formatter.buttons
- },
- {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;
- });
|