Files

13 lines
290 B
JavaScript
Raw Permalink Normal View History

2025-11-07 09:56:20 +08:00
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
});