|
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
-
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'unishop/config/index',
- add_url: 'unishop/config/add',
- edit_url: 'unishop/config/edit',
- del_url: 'unishop/config/del',
- multi_url: 'unishop/config/multi',
- table: 'mixconfig',
- }
- });
-
- var table = $("#table");
-
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'id',
- columns: [
- [
- {field: 'state', checkbox: true},
- {field: 'id', title: __('Id')},
- {field: 'name', title: __('Name')},
- {field: 'intro', title: __('Intro')},
- {field: 'group', title: __('Group')},
- {field: 'type', title: __('Type')},
- {
- field: 'operate',
- title: __('Operate'),
- table: table,
- events: Table.api.events.operate,
- formatter: Table.api.formatter.operate
- }
- ]
- ]
- });
-
- // 为表格绑定事件
- Table.api.bindevent(table);
-
- $("form.edit-form").data("validator-options", {
- display: function (elem) {
- return $(elem).closest('tr').find("td:first").text();
- }
- });
- Form.api.bindevent($("form.edit-form"));
-
- //不可见的元素不验证
- $("form#add-form").data("validator-options", {ignore: ':hidden'});
- Form.api.bindevent($("form#add-form"), null, function (ret) {
- location.reload();
- });
-
- //切换显示隐藏变量字典列表
- $(document).on("change", "form#add-form select[name='row[type]']", function (e) {
- $("#add-content-container").toggleClass("hide", ['select', 'selects', 'checkbox', 'radio'].indexOf($(this).val()) > -1 ? false : true);
- });
-
- //删除配置
- $(document).on("click", ".btn-delcfg", function () {
- var that = this;
- Layer.confirm(__('Are you sure you want to delete this item?'), {icon: 3, title:'提示'}, function (index) {
- Backend.api.ajax({
- url: "unishop/config/del?receiver=" + value,
- data: {name: $(that).data("name")}
- }, function () {
- $(that).closest("tr").remove();
- Layer.close(index);
- });
- });
-
- });
- },
- add: function () {
- Controller.api.bindevent();
- },
- edit: function () {
- Controller.api.bindevent();
- },
- api: {
- bindevent: function () {
- Form.api.bindevent($("form[role=form]"));
- }
- }
- };
- return Controller;
- });
|