qifengquan 1 year ago
parent
commit
dda92fe2a7

+ 14 - 1
application/admin/controller/user/User.php

@@ -172,6 +172,7 @@ class User extends Backend
      */
     public function detail($ids)
     {
+
         $row = $this->model->get($ids);
         if (!$row) {
             $this->error(__('No Results were found'));
@@ -181,12 +182,24 @@ class User extends Backend
         }
         $detail = $row->toArray();
         $detail['gender'] = $detail['gender'] == 0?'女':'男';
+
         $detail['region_province'] = Area::where('id',$detail['region_province'])->value('name');
         $detail['region_city'] = Area::where('id',$detail['region_city'])->value('name');
         $detail['region_area'] = Area::where('id',$detail['region_area'])->value('name');
-        $detail['education'] = $detail['education']?Category::get(['id'=>$detail['education']])->toArray()['name']:'';
+        $detail['province'] = Area::where('id',$detail['province'])->value('name');
+        $detail['city'] = Area::where('id',$detail['city'])->value('name');
+        $detail['area'] = Area::where('id',$detail['area'])->value('name');
+
+        if($detail['education']){
+            $category = Category::where(['id'=>$detail['education']])->value('name');
+            if($category)$detail['education']=$category;
+        }
+        // print_r(Category::where(['id'=>$detail['education']])->value('name'));
+        // exit();
         $detail['user_object'] = UserObject::get(['uid'=>$detail['id']])?UserObject::get(['uid'=>$detail['id']])->toArray():'';
+
         $this->view->assign("row",$detail);
+
         return $this->view->fetch();
     }
 //    /**

+ 62 - 44
application/admin/view/user/user/detail.html

@@ -75,6 +75,24 @@
         <td>家乡所在区域</td>
         <td>{$row.region_area|htmlentities}</td>
     </tr>
+
+    <tr>
+        <td>所在城市省份</td>
+        <td>{$row.province|htmlentities}</td>
+    </tr>
+    <tr>
+        <td>所在城市市区</td>
+        <td>{$row.city|htmlentities}</td>
+    </tr>
+    <tr>
+        <td>所在城市区域</td>
+        <td>{$row.area|htmlentities}</td>
+    </tr>
+    <tr>
+        <td>未来定居地</td>
+        <td>{$row.futurehometown|htmlentities}</td>
+    </tr>
+
     <tr>
         <td>计划结婚</td>
         <td>{$row.marriedtime|htmlentities}</td>
@@ -140,50 +158,50 @@
         <td>{$row.divorced_have_kids|htmlentities}</td>
     </tr>
     {if $row.user_object}
-        <tr>
-            <td>星座(希望对方)</td>
-            <td>{$row.user_object.constellation|htmlentities}</td>
-        </tr>
-        <tr>
-            <td>最小年龄(希望对方)</td>
-            <td>{$row.user_object.min_age|htmlentities}</td>
-        </tr>
-        <tr>
-            <td>最大年龄(希望对方)</td>
-            <td>{$row.user_object.max_age|htmlentities}</td>
-        </tr>
-        <tr>
-            <td>最小身高(希望对方)</td>
-            <td>{$row.user_object.min_height|htmlentities}</td>
-        </tr>
-        <tr>
-            <td>最大身高(希望对方)</td>
-            <td>{$row.user_object.max_height|htmlentities}</td>
-        </tr>
-        <tr>
-            <td>学历(希望对方)</td>
-            <td>{$row.user_object.education|htmlentities}</td>
-        </tr>
-        <tr>
-            <td>车子(希望对方)</td>
-            <td>{$row.user_object.car|htmlentities}</td>
-        </tr>
-        <tr>
-            <td>房子(希望对方)</td>
-            <td>{$row.user_object.house|htmlentities}</td>
-        </tr>
-        <tr>
-            <td>婚史(希望对方)</td>
-            <td>{$row.user_object.marry|htmlentities}</td>
-        </tr>
-        <tr>
-            <td>有无子女(希望对方)</td>
-            <td>{$row.user_object.children|htmlentities}</td>
-        </tr>
-        <tr>
-            <td>是否本地(希望对方)</td>
-            <td>{$row.user_object.locality|htmlentities}</td>
-        </tr>
+    <tr>
+        <td>星座(希望对方)</td>
+        <td>{$row.user_object.constellation|htmlentities}</td>
+    </tr>
+    <tr>
+        <td>最小年龄(希望对方)</td>
+        <td>{$row.user_object.min_age|htmlentities}</td>
+    </tr>
+    <tr>
+        <td>最大年龄(希望对方)</td>
+        <td>{$row.user_object.max_age|htmlentities}</td>
+    </tr>
+    <tr>
+        <td>最小身高(希望对方)</td>
+        <td>{$row.user_object.min_height|htmlentities}</td>
+    </tr>
+    <tr>
+        <td>最大身高(希望对方)</td>
+        <td>{$row.user_object.max_height|htmlentities}</td>
+    </tr>
+    <tr>
+        <td>学历(希望对方)</td>
+        <td>{$row.user_object.education|htmlentities}</td>
+    </tr>
+    <tr>
+        <td>车子(希望对方)</td>
+        <td>{$row.user_object.car|htmlentities}</td>
+    </tr>
+    <tr>
+        <td>房子(希望对方)</td>
+        <td>{$row.user_object.house|htmlentities}</td>
+    </tr>
+    <tr>
+        <td>婚史(希望对方)</td>
+        <td>{$row.user_object.marry|htmlentities}</td>
+    </tr>
+    <tr>
+        <td>有无子女(希望对方)</td>
+        <td>{$row.user_object.children|htmlentities}</td>
+    </tr>
+    <tr>
+        <td>是否本地(希望对方)</td>
+        <td>{$row.user_object.locality|htmlentities}</td>
+    </tr>
     {/if}
     </tbody>
 </table>

+ 1 - 1
public/assets/js/backend/user/head.js

@@ -103,7 +103,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
                                                 }
                                             }, function (data, ret) {
                                                 Layer.closeAll();
-                                                $(".btn-refresh").trigger("click");
+                                                table.bootstrapTable('refresh');
                                             });
                                         });
                                         return false;