123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- 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',
- search:false,
- showExport: false,
- columns: [
- [
- {checkbox: true},
- {field: 'user_id', title: __('User_id')},
- {field: 'user_name', title: __('User_name'),operate: "like"},
- {field: 'user_image', title: __('User_image'), events: Table.api.events.image, formatter: Table.api.formatter.image,operate:false},
- {field: 'user_age', title: __('User_age'),operate: "like"},
- {field: 'user_sex', title: __('User_sex'),operate: "like"},
- // {field: 'user_year_time', title: __('User_year_time')},
- {field: 'user_nation', title: __('User_nation'),operate: "like"},
- {field: 'user_native', title: __('User_native'),operate: "like"},
- {field: 'user_birthplace', title: __('User_birthplace'),operate: "like"},
- {field: 'user_politics', title: __('User_politics'),operate: "like"},
- // {field: 'user_party_time', title: __('User_party_time')},
- // {field: 'user_join_job_time', title: __('User_join_job_time')},
- {field: 'user_health', title: __('User_health'),operate: "like"},
- {field: 'user_major', title: __('User_major'),operate: "like"},
- {field: 'user_specialty', title: __('User_specialty'),operate: "like"},
- {field: 'user_job_place', title: __('User_job_place'),operate: "like"},
- {field: 'user_now_duty', title: __('User_now_duty'),operate: "like"},
- {field: 'user_administrative_level', title: __('User_administrative_level'),operate: "like"},
- {field: 'user_education_full', title: __('User_education_full'),operate: "like"},
- {field: 'user_degree_full', title: __('User_degree_full'),operate: "like"},
- {field: 'user_school_major_full', title: __('User_school_major_full'),operate: "like"},
- {field: 'user_education_b', title: __('User_education_b'),operate: "like"},
- {field: 'user_degree_b', title: __('User_degree_b'),operate: "like"},
- {field: 'user_school_major_b', title: __('User_school_major_b'),operate: "like"},
- {
- 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]"));
- }
- }
- };
- require(['upload'], function (Upload) {
- Upload.api.plupload($('.btn-stock-file'), function (data, ret) {
- Fast.api.ajax({
- url: 'users/import',
- data: {file: data.url},
- }, function (data, ret) {
- if (ret.code==1) {
- layer.msg(ret.msg,{icon:1,time:2000,shade:0.4},function() {
- window.location.reload()//解析成功
- });
- }
- //table.bootstrapTable('refresh');
- },
- function (data, ret) {
- var param = JSON.stringify(ret.data);
- layer.msg(ret.msg,{icon:0,time:1500,shade:0.4},function() {
- window.location.href='users/jdump?data='+param;//解析成功
- });
- });
- });
- });
- return Controller;
- });
|