16 lines
673 B
PHP
16 lines
673 B
PHP
<?php /*a:0:{}*/ ?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
<div width="100%" style="text-align:center;">
|
|
<?php if(is_array($info['report_summary_img']) || $info['report_summary_img'] instanceof \think\Collection || $info['report_summary_img'] instanceof \think\Paginator): $i = 0; $__LIST__ = $info['report_summary_img'];if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$sub): $mod = ($i % 2 );++$i;?>
|
|
<img src="<?php echo htmlentities($sub['url']); ?>" style="width:100%;height: auto;">
|
|
<?php endforeach; endif; else: echo "" ;endif; ?>
|
|
</div>
|
|
</body>
|
|
</html>
|