|
@@ -307,7 +307,7 @@ class User extends BaseController
|
|
|
['ancestral_place',''],
|
|
|
['education',''],
|
|
|
['minority',''],
|
|
|
- ['is_china',''],
|
|
|
+ ['is_china',1],
|
|
|
|
|
|
['user_work_type_id','0'],
|
|
|
['service_label',[]],
|
|
@@ -419,7 +419,7 @@ class User extends BaseController
|
|
|
$save["service_imgs"] = empty($post["service_imgs"]) ? "" : implode(",", $post["service_imgs"]);
|
|
|
|
|
|
|
|
|
- $save['is_china'] = $post["is_china"];
|
|
|
+
|
|
|
$save['work_year'] = empty($post["work_year"]) ? "": $post["work_year"];
|
|
|
$save['ancestral_place'] = empty($post["ancestral_place"])? "": $post["ancestral_place"];
|
|
|
$save['education'] = empty($post["education"]) ? "": $post["education"];
|
|
@@ -429,6 +429,7 @@ class User extends BaseController
|
|
|
$save["status"] = 0;
|
|
|
$save["time"] = time();
|
|
|
$save["uid"] = $request->user["uid"];
|
|
|
+ $save['is_china'] = $post["is_china"];
|
|
|
|
|
|
|
|
|
$save["user_work_type_id"] = empty($post["user_work_type_id"]) ? 0: (int)$post["user_work_type_id"];
|