Authored by weiqingting

逛,编辑修改

... ... @@ -8,7 +8,7 @@ var ENUM={};
// },function(res){
// ENUM=res.data;
// });
// console.log(ENUM);
console.log(ENUM);
var edit=new common.edit(".modal-body",{bucket:"goodsimg"});
... ... @@ -93,7 +93,17 @@ var Bll={
//获取品牌
Bll.getBrands();
/*渲染页面*/
$("#panel-body").html(common.util.__template2($("#tempalte1").html(),ENUM));
/*渲染品牌*/
// Bll.Brdata=ENUM.brands;
// Bll.renderBrandPic(Bll.Brdata);
/*渲染标签*/
// Bll.Tags=[];
// Bll.__render("#taglist","template4",{tags:Bll.Tags});
/*内容渲染->对象转数组*/
// Bll.contentDatas=ENUM.contentData;
new common.dropDown({el:"#authorId",ajax:"guangGetAuthorList"});
new common.dropDown({el:"#maxSortId",ajax:"guangGetSortList",params:function(){
... ... @@ -122,15 +132,14 @@ $(document).on("click","#addUrl",function(){
$(document).on("click","#TagsSelectBtn",function(){
common.dialog.confirm("选择标签","<div id='gird'></div>",function(){
$("#taglist").html(common.util.__template2($("#template4").html(),{tags:g.selected}));
Bll.Tags=g.selected;
Bll.__render("#taglist","template4",{tags:Bll.Tags});
});
g.init('/guang/tags/getList');
});
$(document).on("click",".tag a",function(){
g.selected.splice($(this).data("index"),1);
$("#taglist").html(common.util.__template2($("#template4").html(),{tags:g.selected}));
Bll.Tags.splice($(this).data("index"),1);
Bll.__render("#taglist","template4",{tags:Bll.Tags});
return false;
});
... ... @@ -382,10 +391,11 @@ $(document).on("click","#submit",function(){
console.log("Bll.contentDatas",Bll.Brdata);
option.data.contentData=JSON.stringify(option.data.contentData);
option.data.brands=JSON.stringify(Bll.Brdata);
g.selected.forEach(function(item,index){
Bll.Tags.push(item.id);
var Tags=[];
Bll.Tags.forEach(function(item,index){
Tags.push(item.id);
});
option.data.tag=Bll.Tags.join(',');
option.data.tag=Tags.join(',');
console.log("submit",option.data);
});
... ...