123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'user/user/index',
- // add_url: 'user/user/add',
- // edit_url: 'user/user/edit',
- // del_url: 'user/user/del',
- multi_url: 'user/user/multi',
- table: 'user',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'user.id',
- columns: [
- [
- {checkbox: true},
- {field: 'id', title: __('Id'), sortable: true},
- // {field: 'group.name', title: __('Group')},
- {field: 'username', title: __('Username'), operate: 'LIKE'},
- // {field: 'nickname', title: __('Nickname'), operate: 'LIKE'},
- // {field: 'email', title: __('Email'), operate: 'LIKE'},
- {field: 'mobile', title: __('手机号'), operate: 'LIKE'},
- // {field: 'gender', title: __('性别'), formatter:Table.api.formatter.normal, searchList:{1:'男',0:'女'}},
- {field: 'gender', title: __('性别'), formatter:Table.api.formatter.normal, searchList:{1:'男',0:'女'}},
- {field: 'avatar_new', title: __('头像'), events: Table.api.events.image, formatter: Table.api.formatter.image, operate: false},
- {field: 'real_image', title: __('认证照片'), events: Table.api.events.image, formatter: Table.api.formatter.image, operate: false},
- // {field: 'level', title: __('Level'), operate: 'BETWEEN', sortable: true},
- // {field: 'gender', title: __('Gender'), formatter:Table.api.formatter.normal,searchList: {1: __('Male'), 0: __('Female')}},
- // {field: 'height', title: __('身高')},
- // {field: 'education', title: __('学历')},
- // {field: 'marriage', title: __('婚姻状态'), formatter:Table.api.formatter.normal,searchList: {1: __('已婚'), 0: __('未婚')}},
- // {field: 'constellation', title: __('星座')},
- // {field: 'wx', title: __('微信')},
- // {field: 'id_authentication', title: __('身份认证'), formatter:Table.api.formatter.status,searchList: {1: __('已认证'), 0: __('未认证'),2:__('审核中')}},
- // {field: 'work_authentication', title: __('工作认证'), formatter:Table.api.formatter.status,searchList: {1: __('已认证'), 0: __('未认证'),2:__('审核中')}},
- // {field: 'education_authentication', title: __('学历认证'), formatter:Table.api.formatter.status,searchList: {1: __('已认证'), 0: __('未认证'),2:__('审核中')}},
- // {field: 'score', title: __('Score'), operate: 'BETWEEN', sortable: true},
- // {field: 'successions', title: __('Successions'), visible: false, operate: 'BETWEEN', sortable: true},
- // {field: 'money', title: __('余额'), visible: true, operate: 'BETWEEN', sortable: true},
- {field: 'maxsuccessions', title: __('Maxsuccessions'), visible: false, operate: 'BETWEEN', sortable: true},
- // {field: 'logintime', title: __('Logintime'), formatter: Table.api.formatter.datetime, operate: 'RANGE', addclass: 'datetimerange', sortable: true},
- // {field: 'loginip', title: __('Loginip'), formatter: Table.api.formatter.search},
- // {field: 'jointime', title: __('Jointime'), formatter: Table.api.formatter.datetime, operate: 'RANGE', addclass: 'datetimerange', sortable: true},
- // {field: 'joinip', title: __('Joinip'), formatter: Table.api.formatter.search},
- {field: 'image_audit', title: __('审核状态'), formatter: Table.api.formatter.status, searchList: {0: __('待审核'), 1: __('通过'), 2: __('驳回')}},
- // {field: 'is_recommend', title: '推荐', formatter: Table.api.formatter.status, searchList: {1: '推荐', 0: '不推荐'}},
- // {field: 'is_recommend', title: __('推荐'), operate: false, formatter: Controller.api.custom},
- {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate,
- buttons:[
- {
- name:'image_audit',
- text:'通过',
- title:'通过审核',
- confirm:'确定通过审核?',
- url:'user/head/audit/audit/1',
- classname: 'btn btn-xs btn-success btn-ajax',
- visible:function (row){
- if(row.image_audit == 0){
- return true;
- }
- },
- success:function (){
- table.bootstrapTable('refresh');
- }
- },
- {
- name:'image_audit',
- text:'驳回',
- title:'驳回审核',
- // confirm:'确定驳回审核?',
- // url:'user/head/audit/audit/2',
- // classname: 'btn btn-xs btn-danger btn-ajax',
- classname: 'btn btn-xs btn-danger btn-click',
- visible:function (row){
- if(row.image_audit == 0){
- return true;
- }
- },
- // success:function (){
- // table.bootstrapTable('refresh');
- // }
- click: function (e, row) {
- Layer.prompt({
- title: "驳回理由",
- success: function (layero) {
- $("input", layero).prop("placeholder", "填写驳回理由");
- }
- }, function (value) {
- Fast.api.ajax({
- url: "user/head/audit/audit/" + 2 + "/ids/" + row.id,
- data:{
- 'avatar_reason':value
- }
- }, function (data, ret) {
- console.log(1);
- $(".btn-refresh").trigger("click");
- Layer.closeAll();
- });
- });
- return false;
- }
- },
- ]
- }
- ]
- ]
- });
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- add: function () {
- Controller.api.bindevent();
- },
- edit: function () {
- Controller.api.bindevent();
- },
- api: {
- bindevent: function () {
- Form.api.bindevent($("form[role=form]"));
- },
- custom: function (value, row, index) {
- //添加上btn-change可以自定义请求的URL进行数据处理
- return '<a class="btn-change text-success" data-url="user/user/change" data-confirm="确认切换状态?" data-id="' + row.id + '"><i class="fa ' + (row.is_recommend == '0' ? 'fa-toggle-on fa-flip-horizontal text-gray' : 'fa-toggle-on') + ' fa-2x"></i></a>';
- },
- }
- };
- return Controller;
- });
|