123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
-
- Table.api.init({
- extend: {
- index_url: 'agent/user/index' + location.search,
-
-
- multi_url: 'agent/user/multi',
- import_url: 'agent/user/import',
- table: 'user',
- }
- });
- var table = $("#table");
-
- table.on('post-common-search.bs.table', function (event, table) {
- var form = $("form", table.$commonsearch);
- $("input[name='gh_id']", form).addClass("selectpage").data("source", "gonghui/index").data("primaryKey", "id").data("field", "name").data("orderBy", "id asc");
- Form.events.cxselect(form);
- Form.events.selectpage(form);
- });
-
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'id',
-
-
- columns: [
- [
- {checkbox: true},
- {field: 'id', title: __('Id')},
-
-
- {field: 'intro_uid', title: __('Intro_uid')},
- {field: 'avatar', title: __('Avatar'), operate: 'LIKE', events: Table.api.events.image, formatter: Table.api.formatter.image},
- {field: 'username', title: __('Username'), operate: 'LIKE'},
- {field: 'nickname', title: __('Nickname'), operate: 'LIKE'},
- {field: 'gender', title: __('Gender'), searchList: {"1":__('Gender 1'),"0":__('Gender 0'),"-1":__('Gender -1')}, formatter: Table.api.formatter.normal},
- {field: 'userwallet.pay_money', title: __('累计充值金额')},
- {field: 'userwallet.money', title: __('余额')},
- {field: 'userwallet.get_money', title: __('累计余额')},
- {field: 'jointime', title: __('Jointime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
- {field: 'status', title: __('Status'), searchList: {"1":__('Status 1'),"0":__('Status 0'),"-1":__('Status -1')}, formatter: Table.api.formatter.status},
- {field: 'is_active', title: __('在线状态'), searchList: {"1":__('在线'),"0":__('离线')}, formatter: Table.api.formatter.status},
- {field: 'idcard_status', title: __('Idcard_status'), searchList: {"-1":__('Idcard_status -1'),"0":__('Idcard_status 0'),"1":__('Idcard_status 1'),"2":__('Idcard_status 2')}, formatter: Table.api.formatter.status},
- {field: 'real_status', title: __('Real_status'), searchList: {"-1":__('Real_status -1'),"0":__('Real_status 0'),"1":__('Real_status 1'),"2":__('Real_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: 'frozentime', title: __('Frozentime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate,
- buttons: [
- {
- name: 'statistics',
- text: '统计',
- title: __('统计'),
- extend: 'data-area=\'["85%", "85%"]\'',
- classname: 'btn btn-xs btn-success btn-dialog',
- icon: 'fa fa-list',
- url: 'agent/dashboard/statistics',
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- visible: function (row) {
- if (row.is_show == 1) {
- return true;
- } else {
- return false;
- }
- }
- }
- ,{
- name: 'detail',
- text: '主播统计',
- title: __('主播统计'),
- classname: 'btn btn-xs btn-success btn-dialog',
- icon: 'fa fa-list',
- url: 'agent/user/detail',
- },
- ]
- }
- ]
- ]
- });
-
- 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;
- });
|