Authored by weiqingting

兼容 template_intro 老数据

... ... @@ -100,10 +100,11 @@ var Bll = {
contentDatas: [],
module: null,
toast: function (index, module) {
if (!module.contentData.dialog) {
if (!module.contentData.dialog||!module.contentData.template_intro) {
Button.forEach(function (item, index) {
if (module.contentData.template_name == item.template_name) {
module.contentData.dialog = item.dialog;
module.contentData.template_intro=item.template_intro;
return;
}
});
... ... @@ -199,6 +200,7 @@ if (ViewModel.articleContent) {
ViewModel.articleContent.forEach(function (item, index) {
item.contentData = item.contentData.replace(/(gif|png|jpg|jpeg)\?[^"]*/g, '$1');
item.contentData = common.util.__ObjToArray(JSON.parse(item.contentData));
console.log(item);
Bll.contentDatas.push(item);
});
}
... ...