|
@ -45,7 +45,7 @@
|
|
|
shadeClose: false, //点击遮罩关闭层
|
|
|
content: '../../article/html/article-info.html?articleId=' + code,
|
|
|
end: function() { // 未点击确定按钮,点击关闭按钮
|
|
|
vm.getServiceItem();
|
|
|
vm.getServiceItemList();
|
|
|
}
|
|
|
});
|
|
|
|
|
@ -270,6 +270,17 @@
|
|
|
getImgUrl: function(value) {
|
|
|
var url = httpRequest.getImgUrl(value);
|
|
|
return url;
|
|
|
},
|
|
|
getContent: function(value,type) {
|
|
|
var res=value;
|
|
|
if(type==2 || type==9){
|
|
|
res = "<img src='"+httpRequest.getImgUrl(res)+"'>";
|
|
|
}else if(type==3){
|
|
|
res = '[语音](只能在聊天窗口里查看)';
|
|
|
}else if(type==19){
|
|
|
res = '[聊天记录](只能在聊天窗口里查看)';
|
|
|
}
|
|
|
return res;
|
|
|
}
|
|
|
}
|
|
|
})
|