index-controller.js
623 Bytes
/**
* 首页
*/
define(
"user/index-controller",
[
'mk7/controller',
'mk7/url'
],
function(ctrl, url) {
var $$ = Dom7;
var t7 = Template7;
var ctrl = new ctrl();
ctrl.run = function () {
var me = this;
me.setPageTitle("首页");
//me.hideAllNonBaseMenuItem(window.$site);
window.location.replace(url.to('user#about'));
//me.render();
}
ctrl.bindEvents = function () {
var me = this;
console.log("bindEvents");
}
return ctrl;
}
);