Files
im/plugin/admin/public/js/account.js
T
2025-11-21 01:42:54 +08:00

13 lines
290 B
JavaScript

define(['form'],function (Form) {
//Do setup work hereAction
var Account={
index:function(){
this.bindEvent();
},
bindEvent:function(){
var form = $('form');
Form.api.bindevent(form)
}
};
return Account
});