...
|
...
|
@@ -155,9 +155,9 @@ $("#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.index=contentDatas.length;
|
|
|
item.i=contentDatas.length;
|
|
|
item=$.extend({},item);
|
|
|
module=item.data;
|
|
|
module=item;
|
|
|
|
|
|
var d=new common.dialog({
|
|
|
title:item.text,
|
...
|
...
|
@@ -169,7 +169,7 @@ $(document).on("click",".add_btn",function(){ |
|
|
callback: function(){
|
|
|
|
|
|
contentDatas.push(module);
|
|
|
$("#taglist").html(common.util.__template2($("#template_dialog_text").html(),{modules:contentDatas}));
|
|
|
$("#add-content").html(common.util.__template2($("#template_content").html(),{modules:contentDatas}));
|
|
|
},
|
|
|
css: "btn-primary"
|
|
|
}
|
...
|
...
|
@@ -178,11 +178,11 @@ $(document).on("click",".add_btn",function(){ |
|
|
});
|
|
|
$(document).on("click",".del",function(){
|
|
|
contentDatas.splice($(this).data("index"),1);
|
|
|
$("#taglist").html(common.util.__template2($("#template_dialog_text").html(),contentDatas));
|
|
|
$("#add-content").html(common.util.__template2($("#template_content").html(),contentDatas));
|
|
|
});
|
|
|
|
|
|
$(document).on("change",".observe",function(){
|
|
|
var index=$(this).data("index");
|
|
|
var index=$(this).data("i");
|
|
|
var name=$(this).data("field");
|
|
|
module[name]=$(this).val();
|
|
|
}); |
|
|
\ No newline at end of file |
...
|
...
|
|