80 lines
3.9 KiB
JavaScript
80 lines
3.9 KiB
JavaScript
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
|
||
|
||
var Controller = {
|
||
index: function () {
|
||
// 初始化表格参数配置
|
||
Table.api.init({
|
||
extend: {
|
||
index_url: 'manystore/user_auth/index' + location.search,
|
||
add_url: 'manystore/user_auth/add',
|
||
edit_url: 'manystore/user_auth/edit',
|
||
del_url: 'manystore/user_auth/del',
|
||
multi_url: 'manystore/user_auth/multi',
|
||
import_url: 'manystore/user_auth/import',
|
||
table: 'manystore_user_auth',
|
||
}
|
||
});
|
||
|
||
var table = $("#table");
|
||
|
||
// 初始化表格
|
||
table.bootstrapTable({
|
||
url: $.fn.bootstrapTable.defaults.extend.index_url,
|
||
pk: 'id',
|
||
sortName: 'id',
|
||
columns: [
|
||
[
|
||
{checkbox: true},
|
||
{field: 'id', title: __('Id')},
|
||
{field: 'shop_id', title: __('Shop_id')},
|
||
{field: 'user_id', title: __('User_id')},
|
||
{field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1'),"2":__('Status 2')}, formatter: Table.api.formatter.status},
|
||
{field: 'auth_time', title: __('Auth_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
|
||
{field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
|
||
{field: 'update_time', title: __('Update_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
|
||
{field: 'shop.name', title: __('Shop.name'), operate: 'LIKE'},
|
||
{field: 'user.nickname', title: __('User.nickname'), operate: 'LIKE'},
|
||
{field: 'user.avatar', title: __('User.avatar'), operate: 'LIKE', events: Table.api.events.image, formatter: Table.api.formatter.image},
|
||
{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 () {
|
||
|
||
$(document).on('click', '.btn-changeuser', function (event) {
|
||
var url = $(this).attr('data-url');
|
||
if(!url) return false;
|
||
var title = $(this).attr('title');
|
||
var width = $(this).attr('data-width');
|
||
var height = $(this).attr('data-height');
|
||
// var ids = $(this).attr('data-id');
|
||
var area = [$(window).width() > 800 ? (width?width:'800px') : '95%', $(window).height() > 600 ? (height?height:'600px') : '95%'];
|
||
var options = {
|
||
shadeClose: false,
|
||
shade: [0.3, '#393D49'],
|
||
area: area,
|
||
callback:function(ret){//回调方法,需要在本页面Controller中增加方法监听且调用Fast.api.close(ret)传递结果;
|
||
Fast.api.close(ret);
|
||
}
|
||
};
|
||
Fast.api.open(url,title,options);
|
||
});
|
||
|
||
Form.api.bindevent($("form[role=form]"));
|
||
}
|
||
}
|
||
};
|
||
return Controller;
|
||
});
|