...
|
...
|
@@ -47,12 +47,13 @@ $(document).on("click","#TagsSelectBtn",function(){ |
|
|
g.init('/guang/tags/getList');
|
|
|
});
|
|
|
$(document).on("click",".tag a",function(){
|
|
|
var index=$(this).data("index");
|
|
|
g.selected.splice(index,1);
|
|
|
g.selected.splice($(this).data("index"),1);
|
|
|
$("#taglist").html(common.util.__template2($("#template4").html(),{tags:g.selected}));
|
|
|
return false;
|
|
|
});
|
|
|
|
|
|
$(document).on("click","#addBrands",function(){
|
|
|
|
|
|
});
|
|
|
var e=new common.edit("#panel-body",{});
|
|
|
e.init();
|
|
|
|
...
|
...
|
|