...
|
...
|
@@ -45,6 +45,24 @@ var Bll={ |
|
|
});
|
|
|
$("#addBrands").parent("div").parent("li").prevAll().remove();
|
|
|
$("#addPic").prepend(common.util.__template2($("#template3").html(),{Brands:Brands2}));
|
|
|
},
|
|
|
contentDatas:[],
|
|
|
toast:function(module){
|
|
|
var d=new common.dialog({
|
|
|
title:module.text,
|
|
|
content:common.util.__template2($("#"+module.dialog).html(),module),
|
|
|
width:'80%',
|
|
|
button:[
|
|
|
{
|
|
|
value: "保存",
|
|
|
callback: function(){
|
|
|
Bll.contentDatas.push(module);
|
|
|
$("#add-content").html(common.util.__template2($("#template_content").html(),{modules:Bll.contentDatas}));
|
|
|
},
|
|
|
css: "btn-primary"
|
|
|
}
|
|
|
]
|
|
|
});
|
|
|
}
|
|
|
}
|
|
|
//获取品牌
|
...
|
...
|
@@ -114,7 +132,7 @@ $(document).on("click","#submit",function(){ |
|
|
});
|
|
|
});
|
|
|
|
|
|
var contentDatas=[];
|
|
|
|
|
|
var Button=[
|
|
|
{
|
|
|
text:"文本",
|
...
|
...
|
@@ -155,34 +173,22 @@ $("#content_btns").html(common.util.__template2($("#template_content_btns").html |
|
|
var module=null;
|
|
|
$(document).on("click",".add_btn",function(){
|
|
|
var item=Button[$(this).data("index")];
|
|
|
item.i=contentDatas.length;
|
|
|
item=$.extend({},item);
|
|
|
module=item;
|
|
|
|
|
|
var d=new common.dialog({
|
|
|
title:item.text,
|
|
|
content:common.util.__template2($("#"+item.dialog).html(),item),
|
|
|
width:'80%',
|
|
|
button:[
|
|
|
{
|
|
|
value: "保存",
|
|
|
callback: function(){
|
|
|
|
|
|
contentDatas.push(module);
|
|
|
$("#add-content").html(common.util.__template2($("#template_content").html(),{modules:contentDatas}));
|
|
|
},
|
|
|
css: "btn-primary"
|
|
|
}
|
|
|
]
|
|
|
});
|
|
|
Bll.toast(module);
|
|
|
|
|
|
});
|
|
|
$(document).on("click",".del",function(){
|
|
|
contentDatas.splice($(this).data("index"),1);
|
|
|
Bll.contentDatas.splice($(this).data("index"),1);
|
|
|
$("#add-content").html(common.util.__template2($("#template_content").html(),contentDatas));
|
|
|
});
|
|
|
|
|
|
$(document).on("change",".observe",function(){
|
|
|
var index=$(this).data("i");
|
|
|
var name=$(this).data("field");
|
|
|
module[name]=$(this).val();
|
|
|
module.data[name]=$(this).val();
|
|
|
});
|
|
|
$(document).on("click",".edit",function(){
|
|
|
// var item=Button[$(this).data("index")];
|
|
|
// Bll.toast(module);
|
|
|
}); |
|
|
\ No newline at end of file |
...
|
...
|
|