|
|
var $=require('jquery');
|
|
|
var edit=require('../common/edit');
|
|
|
exports.init = function() {
|
|
|
var selector=$("#basicForm");
|
|
|
$("panel-title",selector).html("修改品牌");
|
|
|
selector.attr("action","/brand/action/update");
|
|
|
|
|
|
edit.init(selector);
|
|
|
|
|
|
$("#save_brand").click(function(){
|
|
|
if(edit.validate(selector)){
|
|
|
edit.submit(selector,function(data){
|
|
|
console.log(data);
|
|
|
});
|
|
|
}else{
|
|
|
console.log("yanzhengshibai");
|
|
|
}
|
|
|
return false;
|
|
|
});
|
|
|
|
|
|
} |
|
|
\ No newline at end of file |