21 lines
869 B
PHP
21 lines
869 B
PHP
<?php /*a:0:{}*/ ?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title></title>
|
|
</head>
|
|
|
|
<body>
|
|
<div style="padding-top: 10px">
|
|
<div style="font-size: 15pt;text-align: center;font-weight: bold;font-family: fangsong;margin-bottom: 20px;">估价对象位置示意图</div>
|
|
<div style="text-align: center;width: 100%;">
|
|
<?php if(is_array($info['location_imgs']) || $info['location_imgs'] instanceof \think\Collection || $info['location_imgs'] instanceof \think\Paginator): $i = 0; $__LIST__ = $info['location_imgs'];if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$img): $mod = ($i % 2 );++$i;?>
|
|
<img src="<?php echo htmlentities($img['url']); ?>" style="width: 100%;height: 850px;">
|
|
<?php endforeach; endif; else: echo "" ;endif; ?>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|