Commit e3ece4e6 by fsn

日志详情的展示

parent 01b796a5
......@@ -28,13 +28,14 @@ var Feng = {
display = info;
} else {
if (info instanceof Array) {
for (var i = 0; i < info.length; i++) {
display = display + info[i] + "<br/>";
for(var x in info){
display = display + info[x] + "<br/>";
}
}else{
display = info;
}
}
var index = parent.layer.open({
parent.layer.open({
title: title,
type: 1,
skin: 'layui-layer-rim', //加上边框
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment