|
|
@@ -6,10 +6,10 @@ define(['jquery', 'bootstrap', 'backend', 'form', 'table'], function ($, undefin
|
|
|
Table.api.init({
|
|
|
extend: {
|
|
|
index_url: 'wechat/plan_record/index',
|
|
|
- // add_url: 'wechat/plan/add',
|
|
|
- // edit_url: 'wechat/plan/edit',
|
|
|
- // del_url: 'wechat/plan/del',
|
|
|
- // multi_url: 'wechat/plan/multi',
|
|
|
+ add_url: 'wechat/plan/add',
|
|
|
+ edit_url: 'wechat/plan/edit',
|
|
|
+ del_url: 'wechat/plan/del',
|
|
|
+ multi_url: 'wechat/plan/multi',
|
|
|
}
|
|
|
});
|
|
|
|
|
|
@@ -21,7 +21,7 @@ define(['jquery', 'bootstrap', 'backend', 'form', 'table'], function ($, undefin
|
|
|
sortName: 'id',
|
|
|
columns: [
|
|
|
[
|
|
|
- // {field: 'state', checkbox: true, },
|
|
|
+ {field: 'state', checkbox: true, },
|
|
|
{field: 'id', title: __('Id')},
|
|
|
{field: 'cid', title: __('Cid')},
|
|
|
{field: 'plan_id', title: __('Plan_id')},
|
|
|
@@ -31,7 +31,7 @@ define(['jquery', 'bootstrap', 'backend', 'form', 'table'], function ($, undefin
|
|
|
{field: 'createtime', title: __('Create time'), formatter: Table.api.formatter.datetime, operate: 'RANGE', addclass: 'datetimerange', sortable: true},
|
|
|
// {field: 'updatetime', title: __('Update time'), formatter: Table.api.formatter.datetime, operate: 'RANGE', addclass: 'datetimerange', sortable: true},
|
|
|
// {field: 'status', title: __('Status'), formatter: Table.api.formatter.status},
|
|
|
- // {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
|
|
|
+ {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
|
|
|
]
|
|
|
]
|
|
|
});
|
|
|
@@ -46,32 +46,32 @@ define(['jquery', 'bootstrap', 'backend', 'form', 'table'], function ($, undefin
|
|
|
edit: function () {
|
|
|
Controller.api.bindevent();
|
|
|
},
|
|
|
- // api: {
|
|
|
- // bindevent: function () {
|
|
|
- // Form.api.bindevent($("form[role=form]"));
|
|
|
- //
|
|
|
- // var refreshkey = function (data) {
|
|
|
- // $("input[name='row[price]']").val(data.eventkey).trigger("change");
|
|
|
- // Layer.closeAll();
|
|
|
- // var keytitle = data.text;
|
|
|
- // var cont = $(".clickbox .create-click:first");
|
|
|
- // $(".keytitle", cont).remove();
|
|
|
- // if (keytitle) {
|
|
|
- // cont.append('<div class="keytitle">' + __('Event key') + ':' + keytitle + '</div>');
|
|
|
- // }
|
|
|
- // };
|
|
|
- // $(document).on('click', "#select-resources", function () {
|
|
|
- // var key = $("input[name='row[eventkey]']").val();
|
|
|
- // parent.Backend.api.open($(this).attr("href") + "?key=" + key, __('Select'), {callback: refreshkey});
|
|
|
- // return false;
|
|
|
- // });
|
|
|
- //
|
|
|
- // $(document).on('click', "#add-resources", function () {
|
|
|
- // parent.Backend.api.open($(this).attr("href") + "?key=", __('Add'), {callback: refreshkey});
|
|
|
- // return false;
|
|
|
- // });
|
|
|
- // }
|
|
|
- // }
|
|
|
+ api: {
|
|
|
+ bindevent: function () {
|
|
|
+ Form.api.bindevent($("form[role=form]"));
|
|
|
+
|
|
|
+ // var refreshkey = function (data) {
|
|
|
+ // $("input[name='row[price]']").val(data.eventkey).trigger("change");
|
|
|
+ // Layer.closeAll();
|
|
|
+ // var keytitle = data.text;
|
|
|
+ // var cont = $(".clickbox .create-click:first");
|
|
|
+ // $(".keytitle", cont).remove();
|
|
|
+ // if (keytitle) {
|
|
|
+ // cont.append('<div class="keytitle">' + __('Event key') + ':' + keytitle + '</div>');
|
|
|
+ // }
|
|
|
+ // };
|
|
|
+ // $(document).on('click', "#select-resources", function () {
|
|
|
+ // var key = $("input[name='row[eventkey]']").val();
|
|
|
+ // parent.Backend.api.open($(this).attr("href") + "?key=" + key, __('Select'), {callback: refreshkey});
|
|
|
+ // return false;
|
|
|
+ // });
|
|
|
+ //
|
|
|
+ // $(document).on('click', "#add-resources", function () {
|
|
|
+ // parent.Backend.api.open($(this).attr("href") + "?key=", __('Add'), {callback: refreshkey});
|
|
|
+ // return false;
|
|
|
+ // });
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
};
|
|
|
return Controller;
|