123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'department/index/index',
- add_url: 'department/index/add',
- edit_url: 'department/index/edit',
- del_url: 'department/index/del',
- multi_url: 'department/index/multi',
- dragsort_url: '',
- table: 'department',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'weigh',
- pagination: false,
- escape: false,
- fixedColumns: true,
- fixedRightNumber: 1,
- columns: [
- [
- {checkbox: true},
- {field: 'id', title: __('编号')},
- {field: 'name', title: __('Name'), align: 'left'},
- {
- field: 'weigh',
- title: __('Weigh'),
- formatter: function (value, row, index) {
- return '<input type="text" class="form-control text-center text-weigh" data-id="' + row.id + '" value="' + value + '" style="width:50px;margin:0 auto;" />';
- },
- events: {
- "dblclick .text-weigh": function (e) {
- e.preventDefault();
- e.stopPropagation();
- return false;
- }
- }
- },
- {
- field: 'createtime',
- title: __('Createtime'),
- visible: false,
- operate: 'RANGE',
- addclass: 'datetimerange',
- formatter: Table.api.formatter.datetime
- },
- {
- field: 'updatetime',
- title: __('Updatetime'),
- visible: false,
- operate: 'RANGE',
- addclass: 'datetimerange',
- formatter: Table.api.formatter.datetime
- },
- {field: 'status', title: __('Status'), formatter: Table.api.formatter.status},
- // {
- // field: 'tags',
- // title: __('标签属性'),
- // operate: "LIKE",
- // align: 'left',
- // formatter: function (value, row, index) {
- // return Table.api.formatter.flag.call(this, row['tags'], row, index);
- // }
- // },
- {
- field: 'id',
- title: '<a href="javascript:;" class="btn btn-success btn-xs btn-toggle"><i class="fa fa-chevron-up"></i></a>',
- operate: false,
- formatter: Controller.api.formatter.subnode
- },
- {
- field: 'operate',
- title: __('Operate'),
- table: table,
- width: 160,
- events: Table.api.events.operate,
- formatter: Table.api.formatter.buttons,
- buttons: [
- {
- name: 'add',
- text: __('Children'),
- classname: 'btn btn-info btn-xs btn-dialog',
- icon: 'fa fa-plus',
- url: 'department/index/add/parent_id/{ids}'
- },
- {
- name: 'dispatch',
- text: '编辑',
- icon: 'fa fa-pencil',
- title: '编辑',
- classname: 'btn btn-success btn-xs btn-magic btn-dialog',
- url: 'department/index/edit',
- },{
- name: 'dispatch',
- text: '删除',
- icon: 'fa fa-trash',
- title: '删除',
- classname: 'btn btn-danger btn-xs btn-magic btn-ajax',
- url: 'department/index/del',
- confirm: '确定要删除吗?',
- success: function (data, ret) {
- $(".btn-refresh").trigger("click");
- },
- error: function (data, ret) {
- Layer.alert(ret.msg);
- return false;
- }
- }
- // {
- // name: 'index',
- // text: __('Employee'),
- // classname: 'btn btn-info btn-xs btn-dialog',
- // icon: 'fa fa-users',
- // url: 'department/admin/index/department_id/{ids}'
- // }
- ]
- }
- ]
- ],
- search: false,
- commonSearch: false
- });
- // 绑定TAB事件
- $('.panel-heading a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
- var field = $(this).closest("ul").data("field");
- var value = $(this).data("value");
- var options = table.bootstrapTable('getOptions');
- options.pageNumber = 1;
- options.queryParams = function (params) {
- params.model_id = value;
- return params;
- };
- table.bootstrapTable('refresh', {});
- return false;
- });
- $(document).on("change", ".text-weigh", function () {
- $(this).data("params", {weigh: $(this).val()});
- Table.api.multi('', [$(this).data("id")], table, this);
- return false;
- });
- //当内容渲染完成后
- table.on('post-body.bs.table', function (e, settings, json, xhr) {
- //默认隐藏所有子节点
- $("a.btn[data-id][data-pid][data-pid!=0]").closest("tr").hide();
- $(".btn-node-sub.disabled[data-pid!=0]").closest("tr").hide();
- //显示隐藏子节点
- $(".btn-node-sub").off("click").on("click", function (e) {
- var status = $(this).data("shown") || $("a.btn[data-pid='" + $(this).data("id") + "']:visible").size() > 0 ? true : false;
- $("a.btn[data-pid='" + $(this).data("id") + "']").each(function () {
- $(this).closest("tr").toggle(!status);
- if (!$(this).hasClass("disabled")) {
- $(this).trigger("click");
- }
- });
- $(this).data("shown", !status);
- return false;
- });
- });
- //展开隐藏一级
- $(document.body).on("click", ".btn-toggle", function (e) {
- $("a.btn[data-id][data-pid][data-pid!=0].disabled").closest("tr").hide();
- var that = this;
- var show = $("i", that).hasClass("fa-chevron-down");
- $("i", that).toggleClass("fa-chevron-down", !show);
- $("i", that).toggleClass("fa-chevron-up", show);
- $("a.btn[data-id][data-pid][data-pid!=0]").closest("tr").toggle(show);
- $(".btn-node-sub[data-pid=0]").data("shown", show);
- });
- //展开隐藏全部
- $(document.body).on("click", ".btn-toggle-all", function (e) {
- var that = this;
- var show = $("i", that).hasClass("fa-plus");
- $("i", that).toggleClass("fa-plus", !show);
- $("i", that).toggleClass("fa-minus", show);
- $(".btn-node-sub.disabled[data-pid!=0]").closest("tr").toggle(show);
- $(".btn-node-sub[data-pid!=0]").data("shown", show);
- });
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- add: function () {
- Controller.api.bindevent();
- $("input[name='row[type]'][value=list]").trigger("click");
- $("select[name='row[model_id]']").trigger("change");
- },
- edit: function () {
- Controller.api.bindevent();
- $("input[name='row[type]']:checked").trigger("fa.event.typeupdated", "edit");
- },
- admin: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'cms/channel/admin',
- dragsort_url: '',
- table: 'channel_admin',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'weigh',
- pagination: false,
- escape: false,
- columns: [
- [
- {
- field: 'superadmin', title: __('Type'), formatter: function (value, row, index) {
- return row.superadmin ? "<span class='label label-danger'>超级管理员</span>" : "<span class='label label-success'>普通管理员</span>";
- }
- },
- {field: 'username', title: __('Username')},
- {field: 'nickname', title: __('Nickname')},
- {field: 'channels', title: __('Channels')},
- {
- field: 'operate',
- title: __('Operate'),
- table: table,
- formatter: Table.api.formatter.buttons,
- buttons: [
- {
- name: 'authorization',
- text: __('Authorization'),
- classname: 'btn btn-xs btn-success btn-authorization',
- icon: 'fa fa-list',
- url: 'cms/channel/admin/act/authorization',
- visible: function (row) {
- return !row.superadmin;
- },
- },
- {
- name: 'remove',
- text: __('Remove'),
- classname: 'btn btn-xs btn-danger btn-remove btn-ajax',
- icon: 'fa fa-times',
- url: 'cms/channel/admin/act/remove',
- visible: function (row) {
- return row.channels > 0;
- },
- confirm: __('Are you sure you want to remove this item?'),
- success: function (ret) {
- $(".btn-refresh").trigger("click");
- }
- }
- ]
- }
- ]
- ],
- search: false,
- commonSearch: false
- });
- // 为表格绑定事件
- Table.api.bindevent(table);
- require(['jstree'], function () {
- //全选和展开
- $(document).on("click", "#checkall", function () {
- $("#channeltree").jstree($(this).prop("checked") ? "check_all" : "uncheck_all");
- });
- $(document).on("click", "#expandall", function () {
- $("#channeltree").jstree($(this).prop("checked") ? "open_all" : "close_all");
- });
- // 点击授权
- $(document).on("click", ".btn-authorization", function () {
- var row = Table.api.getrowbyindex(table, $(this).data("row-index"));
- Fast.api.ajax($(this).attr("href"), function (data, ret) {
- Layer.open({
- id: "auth",
- type: 1,
- title: __('Authorization'),
- btn: [__('Save')],
- area: ["600px", "400px"],
- content: Template("authorizationtpl", {}),
- success: function () {
- $('#channeltree').jstree({
- "themes": {
- "stripes": true
- },
- "checkbox": {
- "keep_selected_style": false,
- },
- "types": {
- "channel": {
- "icon": "fa fa-th",
- },
- "list": {
- "icon": "fa fa-list",
- },
- "link": {
- "icon": "fa fa-link",
- },
- "disabled": {
- "check_node": false,
- "uncheck_node": false
- }
- },
- 'plugins': ["types", "checkbox"],
- "core": {
- "multiple": true,
- 'check_callback': true,
- "data": data
- }
- });
- },
- yes: function (index, o) {
- var selected = $("#channeltree", o).jstree("get_selected");
- if (selected.length <= 0) {
- Layer.msg(__('You must choose at least one channel'), {id: "aaafd"});
- } else {
- Fast.api.ajax({
- url: "cms/channel/admin/act/save/ids/" + row.id,
- data: {"ids": selected.join(",")}
- }, function (data, ret) {
- $(".btn-refresh").trigger("click");
- Layer.close(index);
- });
- }
- }
- });
- return false;
- });
- return false;
- });
- });
- },
- api: {
- formatter: {
- title: function (value, row, index) {
- return !row.ismenu || row.status == 'hidden' ? "<span class='text-muted'>" + value + "</span>" : value;
- },
- name: function (value, row, index) {
- return !row.ismenu || row.status == 'hidden' ? "<span class='text-muted'>" + value + "</span>" : value;
- },
- icon: function (value, row, index) {
- return '<span class="' + (!row.ismenu || row.status == 'hidden' ? 'text-muted' : '') + '"><i class="' + value + '"></i></span>';
- },
- subnode: function (value, row, index) {
- return '<a href="javascript:;" data-toggle="tooltip" title="' + __('Toggle sub menu') + '" data-id="' + row.id + '" data-pid="' + row.pid + '" class="btn btn-xs '
- + (row.haschild == 1 || row.ismenu == 1 ? 'btn-success' : 'btn-default disabled') + ' btn-node-sub"><i class="fa fa-' + (row.haschild == 1 || row.ismenu == 1 ? 'sitemap' : 'list') + '"></i></a>';
- },
- },
- bindevent: function () {
- Form.api.bindevent($("form[role=form]"));
- require.config({
- paths: {
- 'tagsinput': '../addons/wscrm/js/jquery.tagsinput',
- 'autocomplete': '../addons/wscrm/js/jquery.autocomplete',
- },
- shim: {
- 'autocomplete': {
- deps: ['jquery'],
- exports: '$.fn.extend'
- },
- 'tagsinput': {
- deps: ['jquery', 'autocomplete', 'css!../addons/wscrm/css/jquery.tagsinput.min.css'],
- exports: '$.fn.extend'
- }
- }
- }
- );
- require(['tagsinput'], function () {
- //标签输入
- var elem = "#c-tags";
- var tags = $(elem);
- tags.tagsInput({
- width: 'auto',
- defaultText: '输入后空格确认',
- minInputWidth: 110,
- height: '36px',
- placeholderColor: '#999',
- onChange: function (row) {
- if (typeof callback === 'function') {
- } else {
- $(elem + "_addTag").focus();
- $(elem + "_tag").trigger("blur.autocomplete").focus();
- }
- },
- autocomplete: {
- url: 'wscrm/tag/autocomplete?type=customer',
- minChars: 1,
- menuClass: 'autocomplete-tags'
- }
- });
- });
- }
- }
- };
- return Controller;
- });
|