Files
im/plugin/admin/public/js/account.js
T
commie c153975eed 7
2026-01-08 05:42:44 +08:00

13 lines
290 B
JavaScript
Executable File

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
});