Commit e3ece4e6 by fsn

日志详情的展示

parent 01b796a5
...@@ -28,13 +28,14 @@ var Feng = { ...@@ -28,13 +28,14 @@ var Feng = {
display = info; display = info;
} else { } else {
if (info instanceof Array) { if (info instanceof Array) {
for (var i = 0; i < info.length; i++) { for(var x in info){
display = display + info[i] + "<br/>"; display = display + info[x] + "<br/>";
} }
}else{
display = info;
} }
} }
parent.layer.open({
var index = parent.layer.open({
title: title, title: title,
type: 1, type: 1,
skin: 'layui-layer-rim', //加上边框 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