|
@@ -16,32 +16,19 @@ class Authentication extends Api
|
|
|
public function authentication(){
|
|
|
$mid = $this->check_login();
|
|
|
$data = input();
|
|
|
-// if(empty($data['name'])){
|
|
|
-// $this->error('请输入真是姓名');
|
|
|
-// }
|
|
|
-// if(empty($data['phone'])){
|
|
|
-// $this->error('请输入手机号');
|
|
|
-// }
|
|
|
-// if(!Validate::regex($data['phone'], "^1\d{10}$")){
|
|
|
-// $this->error('请输入正确的手机格式');
|
|
|
-// }
|
|
|
-// if(empty($data['uuid'])){
|
|
|
-// $this->error('请输入会员号');
|
|
|
-// }
|
|
|
if(empty($data['c_image'])){
|
|
|
$this->error('请上传单位证明');
|
|
|
}
|
|
|
-// if(empty($data['m_images'])){
|
|
|
-// $this->error('请上传个人照片');
|
|
|
-// }
|
|
|
+
|
|
|
if(empty($data['n_image'])){
|
|
|
$this->error('请上传电子会员凭证');
|
|
|
}
|
|
|
+ if(!$data['c_id']||!$data['n_id']||!$data['zhuxi']||!$data['zhuxi_phone']||!$data['constellation']||!$data['hobby']||!$data['appeals']||!$data['hunshi']||!$data['is_zinv']||!$data['graduaction_school']){
|
|
|
+ $this->error('参数不能为空');
|
|
|
+ }
|
|
|
if(isset($data['type'])) {
|
|
|
$insert = [
|
|
|
'mid' => $mid,
|
|
|
-// 'name' => $data['name'],
|
|
|
-// 'phone' => $data['phone'],
|
|
|
'c_id' => $data['c_id'],
|
|
|
'n_id' => $data['n_id'],
|
|
|
'zhuxi'=>$data['zhuxi'],
|