123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use think\Db;
- use think\Exception;
- use think\facade\Validate;
- class Authentication extends Api
- {
- /**
- * @return void
- * 提交审核
- */
- public function authentication(){
- $mid = $this->check_login();
- $data = input();
- if(empty($data['c_image'])){
- $this->error('请上传单位证明');
- }
- if(empty($data['n_image'])){
- $this->error('请上传电子会员凭证');
- }
- if(!$data['c_id']||!$data['n_id']||!$data['constellation']||!$data['hobby']||!$data['appeals']||!$data['hunshi']||!$data['is_zinv']||!$data['graduaction_school']){
- $this->error('参数不能为空');
- }
- if(isset($data['type'])) {
- $insert = [
- 'mid' => $mid,
- 'c_id' => $data['c_id'],
- 'n_id' => $data['n_id'],
- 'zhuxi'=>$data['zhuxi'],
- 'zhuxi_phone'=>$data['zhuxi_phone'],
- 'constellation'=>$data['constellation'],
- 'hobby'=>$data['hobby'],
- 'appeals'=>$data['appeals'],
- 'hunshi' =>$data['hunshi'],
- 'is_zinv'=>$data['is_zinv'],
- 'zinv_sex'=>$data['zinv_sex'],
- 'is_du' =>$data['is_du'],
- 'children'=>$data['children'],
- 'home'=>$data['home'],
- 'is_car'=>$data['is_car'],
- 'car_model'=>$data['car_model'],
- 'fa_work'=>$data['fa_work'],
- 'ma_work'=>$data['ma_work'],
- 'graduation_school'=>$data['graduaction_school'],
- 'position'=>$data['position'],
- 'income'=>$data['income'],
- 'image'=>$data['image'],
- 'c_show_image' => $data['c_image'],
- 'n_show_image' => $data['n_image'],
- 'is_vip' => $data['is_vip'],
- 'create_at' => date('Y-m-d H:i:s')
- ];
- }
- else {
- $insert = [
- 'mid' => $mid,
- 'name' => $data['name'],
- 'phone' => $data['phone'],
- 'c_id' => $data['c_id'],
- 'm_uuid' => $data['uuid'],
- 'c_show_image' => $data['c_image'],
- 'n_show_image' => $data['n_image'],
- 'm_images' => $data['m_images'],
- 'is_vip' => $data['is_vip'],
- 'create_at' => date('Y-m-d H:i:s')
- ];
- }
- Db::startTrans();
- try {
- Db::name('store_examine')->insert($insert);
- Db::commit();
- }catch (Exception $e) {
- Db::rollback();
- $this->error('认证信息提交失败,联系管理员');
- }
- $this->success('认证信息已提交,等待审核');
- }
- /**
- * @return void
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * 展示审核页面
- */
- public function show1(){
- //type 1未认证 2 已认证 3认证失败 4 等待认证审核
- $mid = $this->check_login();
- $user_info = Db::name('store_member')->where('id',$mid)->value('vip_level');
- $exam = Db::name('store_examine')->where('mid',$mid)->where('is_deleted',0)->value('status');
- $data=[];
- if($exam){
- if($exam == 1){
- $type = 4;
- }
- if($exam==2) {
- $data = Db::name('store_member')
- ->alias('m')
- ->leftJoin('store_company c','m.working=c.id')
- ->where('m.id',$mid)
- ->field('username,phone,name')
- ->find();
- $type = 2;
- }
- if($exam==3){
- $data = Db::name('store_examine')
- ->where('mid',$mid)
- ->where('is_deleted',0)
- ->field('reason')
- ->find();
- $type =3;
- }
- }
- else{
- $type = 1;
- if($user_info==1){
- $data = Db::name('store_member')
- ->alias('m')
- ->join('store_company c','m.working=c.id')
- ->where('m.id',$mid)
- ->field('username,phone,name')
- ->find();
- $type = 2;
- }
- }
- $this->success('认证审核',['type'=>$type,'data'=>$data]);
- }
- public function show(){
- //type 1未认证 2 已认证 3认证失败 4 等待认证审核
- $mid = $this->check_login();
- $user_info = Db::name('store_member')->where('id',$mid)->value('vip_level');
- $exam = Db::name('store_examine')->where('mid',$mid)->where('is_deleted',0)->value('status');
- $data=[];
- if($exam){
- if($exam == 1){
- $type = 4;
- }
- if($exam==2) {
- $data = Db::name('store_member')
- ->alias('m')
- ->leftJoin('store_company c','m.working=c.id')
- ->where('m.id',$mid)
- ->field('username,phone,name')
- ->find();
- $type = 2;
- }
- if($exam==3){
- $data = Db::name('store_examine')
- ->where('mid',$mid)
- ->where('is_deleted',0)
- ->field('reason')
- ->find();
- $type =3;
- }
- }
- else{
- $type = 1;
- if($user_info==1){
- $data = Db::name('store_member')
- ->where('id',$mid)
- ->field('username,phone')
- ->find();
- $type = 2;
- }
- }
- $this->success('认证审核',['type'=>$type,'data'=>$data]);
- }
- /**
- * @return void
- * @throws Exception
- * @throws \think\exception\PDOException
- * 重新认证
- */
- public function new_authentication(){
- $mid = $this->check_login();
- Db::name('store_examine')->where('mid',$mid)->where('is_deleted',0)->update(['is_deleted'=>1]);
- $this->success('快去重新认证吧');
- }
- }
|