123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'general/configvalue/index',
- add_url: 'general/configvalue/add',
- edit_url: 'general/configvalue/edit',
- del_url: 'general/configvalue/del',
- multi_url: 'general/configvalue/multi',
- table: 'configvalue',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- sortName: 'weigh',
- columns: [
- [
- {field: 'state', checkbox: true, },
- {field: 'id', title: 'ID'},
- {field: 'name', title: __('Name')},
- {field: 'weigh', title: __('Weigh')},
- {field: 'status', title: __('Status'), formatter: Table.api.formatter.status},
- {field: 'operate', title: __('Operate'), events: Table.api.events.operate, formatter: Table.api.formatter.operate}
- ]
- ]
- });
- // 为表格绑定事件
- Table.api.bindevent(table);
- // 清除缓存
- $(document).on("click", ".btn-clear-cache", function (e) {
- Backend.api.layer.confirm(__("Are you sure you want to clear cache?"), function () {
- Backend.api.ajax({
- url: 'ajax/clearcache'
- }, function (ret) {
- Layer.closeAll();
- Toastr.success(__('Operation completed'));
- });
- });
- });
- },
- add: function () {
- Form.api.bindevent($("form[role=form]"));
- Controller.api.bindevent();
- },
- edit: function () {
- Form.api.bindevent($("form[role=form]"));
- Controller.api.bindevent();
- },
- api: {
- bindevent: function () {
- $(document).on("click", ".fieldlist .append", function () {
- var rel = parseInt($(this).closest("dl").attr("rel")) + 1;
- $(this).closest("dl").attr("rel", rel);
- $('<dd class="form-inline"><input type="text" name="field[' + rel + ']" class="form-control" id="field-' + rel + '" value="" size="10" /> <input type="text" name="value[' + rel + ']" class="form-control" id="value-' + rel + '" value="" size="40" /> <span class="btn btn-sm btn-danger btn-remove"><i class="fa fa-times"></i></span> <span class="btn btn-sm btn-primary btn-dragsort"><i class="fa fa-arrows"></i></span></dd>').insertBefore($(this).parent());
- });
- $(document).on("click", ".fieldlist dd .btn-remove", function () {
- $(this).parent().remove();
- });
- //拖拽排序
- require(['dragsort'], function () {
- //绑定拖动排序
- $("dl.fieldlist").dragsort({
- itemSelector: 'dd',
- dragSelector: ".btn-dragsort",
- dragEnd: function () {
- },
- placeHolderTemplate: "<dd></dd>"
- });
- });
- }
- }
- };
- return Controller;
- });
|