|
@@ -155,9 +155,9 @@ $("#content_btns").html(common.util.__template2($("#template_content_btns").html |
|
@@ -155,9 +155,9 @@ $("#content_btns").html(common.util.__template2($("#template_content_btns").html |
155
|
var module=null;
|
155
|
var module=null;
|
156
|
$(document).on("click",".add_btn",function(){
|
156
|
$(document).on("click",".add_btn",function(){
|
157
|
var item=Button[$(this).data("index")];
|
157
|
var item=Button[$(this).data("index")];
|
158
|
- item.index=contentDatas.length;
|
158
|
+ item.i=contentDatas.length;
|
159
|
item=$.extend({},item);
|
159
|
item=$.extend({},item);
|
160
|
- module=item.data;
|
160
|
+ module=item;
|
161
|
|
161
|
|
162
|
var d=new common.dialog({
|
162
|
var d=new common.dialog({
|
163
|
title:item.text,
|
163
|
title:item.text,
|
|
@@ -169,7 +169,7 @@ $(document).on("click",".add_btn",function(){ |
|
@@ -169,7 +169,7 @@ $(document).on("click",".add_btn",function(){ |
169
|
callback: function(){
|
169
|
callback: function(){
|
170
|
|
170
|
|
171
|
contentDatas.push(module);
|
171
|
contentDatas.push(module);
|
172
|
- $("#taglist").html(common.util.__template2($("#template_dialog_text").html(),{modules:contentDatas}));
|
172
|
+ $("#add-content").html(common.util.__template2($("#template_content").html(),{modules:contentDatas}));
|
173
|
},
|
173
|
},
|
174
|
css: "btn-primary"
|
174
|
css: "btn-primary"
|
175
|
}
|
175
|
}
|
|
@@ -178,11 +178,11 @@ $(document).on("click",".add_btn",function(){ |
|
@@ -178,11 +178,11 @@ $(document).on("click",".add_btn",function(){ |
178
|
});
|
178
|
});
|
179
|
$(document).on("click",".del",function(){
|
179
|
$(document).on("click",".del",function(){
|
180
|
contentDatas.splice($(this).data("index"),1);
|
180
|
contentDatas.splice($(this).data("index"),1);
|
181
|
- $("#taglist").html(common.util.__template2($("#template_dialog_text").html(),contentDatas));
|
181
|
+ $("#add-content").html(common.util.__template2($("#template_content").html(),contentDatas));
|
182
|
});
|
182
|
});
|
183
|
|
183
|
|
184
|
$(document).on("change",".observe",function(){
|
184
|
$(document).on("change",".observe",function(){
|
185
|
- var index=$(this).data("index");
|
185
|
+ var index=$(this).data("i");
|
186
|
var name=$(this).data("field");
|
186
|
var name=$(this).data("field");
|
187
|
module[name]=$(this).val();
|
187
|
module[name]=$(this).val();
|
188
|
}); |
188
|
}); |