|
@@ -0,0 +1,76 @@
|
|
|
+define(['jquery', 'bootstrap', 'backend', 'form', 'table'], function ($, undefined, Backend, Form, Table) {
|
|
|
+
|
|
|
+ var Controller = {
|
|
|
+ index: function () {
|
|
|
+
|
|
|
+ Table.api.init({
|
|
|
+ extend: {
|
|
|
+ index_url: 'wechat/plan/index',
|
|
|
+ add_url: 'wechat/plan/add',
|
|
|
+ edit_url: 'wechat/plan/edit',
|
|
|
+ del_url: 'wechat/plan/del',
|
|
|
+ multi_url: 'wechat/plan/multi',
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ var table = $("#table");
|
|
|
+
|
|
|
+
|
|
|
+ table.bootstrapTable({
|
|
|
+ url: $.fn.bootstrapTable.defaults.extend.index_url,
|
|
|
+ sortName: 'id',
|
|
|
+ columns: [
|
|
|
+ [
|
|
|
+ {field: 'state', checkbox: true, },
|
|
|
+ {field: 'id', title: __('Id')},
|
|
|
+ {field: 'planid', title: __('PlanId')},
|
|
|
+ {field: 'text', title: __('Text')},
|
|
|
+ {field: 'price', title: __('price')},
|
|
|
+ {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: '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 () {
|
|
|
+ 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;
|
|
|
+});
|