...
|
...
|
@@ -176,11 +176,12 @@ $(document).on('click', 'input[name="brandType"]', function () { |
|
|
|
|
|
function plusStarOP(prefix, url, item) {
|
|
|
|
|
|
|
|
|
|
|
|
var a = new common.edit('#templete-top');
|
|
|
common.dialog.confirm(prefix+'品牌', common.util.__template2($("#template").html(), item), function () {
|
|
|
|
|
|
console.log('type' + $('#brandType').val());
|
|
|
var type = $('#brandType').val();
|
|
|
if(type) {
|
|
|
return a.submit(url,function(option){
|
|
|
//设置图片
|
|
|
if(imgArr.length) {
|
...
|
...
|
@@ -197,11 +198,16 @@ function plusStarOP(prefix, url, item) { |
|
|
a.$tip(res.message);
|
|
|
}
|
|
|
return false;
|
|
|
},
|
|
|
};
|
|
|
option.error=function(res){
|
|
|
a.$tip(res.message);
|
|
|
}
|
|
|
});
|
|
|
} else {
|
|
|
a.$tip('类型不能为空');
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
|
|
|
});
|
|
|
|
...
|
...
|
|