repairing-controller.js
547 Bytes
/**
* 维修中页
*/
define(
"order/repairing-controller",
[
'mk7/controller',
'mk7/url',
'mk7/utils',
],
function(ctrl, url, utils) {
var $$ = Dom7;
var t7 = Template7;
var ctrl = new ctrl();
ctrl.run = function () {
var me = this;
me.setPageTitle("维修单");
me.render();
}
ctrl.bindEvents = function () {
var me = this;
console.log("bindEvents");
}
return ctrl;
}
);