dever 3 years ago
parent
commit
a95b59f3a0
1 changed files with 1 additions and 4 deletions
  1. 1 4
      service/option/lib/Account.php

+ 1 - 4
service/option/lib/Account.php

@@ -17,10 +17,7 @@ class Account
 
             $table = array();
             if ($account['idcard_front']) {
-                $table['正面'] = '<img src="'.$account['idcard_front'].'" width="150">';
-            }
-            if ($account['idcard_back']) {
-                $table['背面'] = '<img src="'.$account['idcard_back'].'" width="150">';
+                $table['照片'] = '<img src="'.$account['idcard_front'].'" width="100"><img src="'.$account['idcard_back'].'" width="100">';
             }
             $html .= Dever::table($table);
             return $html;