39 lines
2.3 KiB
PHP
39 lines
2.3 KiB
PHP
<?php /*a:0:{}*/ ?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title></title>
|
|
</head>
|
|
|
|
<body>
|
|
<div style="padding-top: 10px;" width="100%">
|
|
<div style="font-size: 15pt;text-align: center;font-weight: bold;font-family: fangsong;margin-bottom: 20px;">房产证复印件</div>
|
|
<br>
|
|
<br>
|
|
<table cellpadding="0" border="0" style="text-align: center;" width="100%">
|
|
<?php if(is_array($info['house_img']) || $info['house_img'] instanceof \think\Collection || $info['house_img'] instanceof \think\Paginator): $i = 0; $__LIST__ = $info['house_img'];if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$himg): $mod = ($i % 2 );++$i;?>
|
|
<tr style="margin-top: 10px;">
|
|
<td width="100%"><img src="<?php echo htmlentities($himg['url']); ?>" style="width: 100%;height: 750px;display: table;"></td>
|
|
</tr>
|
|
<?php endforeach; endif; else: echo "" ;endif; ?>
|
|
</table>
|
|
<table cellpadding="0" border="0" style="text-align: center;" width="100%">
|
|
<?php if(is_array($info['valuer_img']) || $info['valuer_img'] instanceof \think\Collection || $info['valuer_img'] instanceof \think\Paginator): $i = 0; $__LIST__ = $info['valuer_img'];if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vimg): $mod = ($i % 2 );++$i;?>
|
|
<tr style="margin-top: 10px;">
|
|
<td width="100%"><img src="<?php echo htmlentities($vimg['url']); ?>" style="width: 100%;height: 350px;display: table;"></td>
|
|
</tr>
|
|
<?php endforeach; endif; else: echo "" ;endif; ?>
|
|
</table>
|
|
<table cellpadding="0" border="0" style="text-align: center;" width="100%">
|
|
<?php if(is_array($info['company_img']) || $info['company_img'] instanceof \think\Collection || $info['company_img'] instanceof \think\Paginator): $i = 0; $__LIST__ = $info['company_img'];if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$cimg): $mod = ($i % 2 );++$i;?>
|
|
<tr style="margin-top: 10px;">
|
|
<td width="100%"><img src="<?php echo htmlentities($cimg['url']); ?>" style="width: 100%;height: auto;display: table;"></td>
|
|
</tr>
|
|
<?php endforeach; endif; else: echo "" ;endif; ?>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|