auth_admin.js 410 B

12345678910111213141516
  1. define(['jquery', 'toastr', 'form', 'template','table',Fast.api.fixurl('/assets/addons/csmadmin/js/common/csmutils.js')],
  2. function ($, toastr, Form, Template,Table,csmutils) {
  3. var Controller = {
  4. mounted: function () {
  5. var that = this;
  6. that._render();
  7. that._bind();
  8. },
  9. _render: function () {
  10. },
  11. _bind: function () {
  12. console.log('_bind!@');
  13. }
  14. };
  15. return Controller;
  16. });