123456789101112131415161718 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- },
- add: function () {
- Controller.api.isdefault();
- Controller.api.bindevent();
- },
- edit: function () {
- Controller.api.isdefault();
- Controller.api.bindevent();
- },
- api: {
- }
- };
- return Controller;
- });
|