Authentication.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use think\Db;
  5. use think\Exception;
  6. use think\facade\Validate;
  7. class Authentication extends Api
  8. {
  9. /**
  10. * @return void
  11. * 提交审核
  12. */
  13. public function authentication(){
  14. $mid = $this->check_login();
  15. $data = input();
  16. if(empty($data['c_image'])){
  17. $this->error('请上传单位证明');
  18. }
  19. if(empty($data['n_image'])){
  20. $this->error('请上传电子会员凭证');
  21. }
  22. if(!$data['c_id']||!$data['n_id']||!$data['constellation']||!$data['hobby']||!$data['appeals']||!$data['hunshi']||!$data['is_zinv']||!$data['graduaction_school']){
  23. $this->error('参数不能为空');
  24. }
  25. if(isset($data['type'])) {
  26. $insert = [
  27. 'mid' => $mid,
  28. 'c_id' => $data['c_id'],
  29. 'n_id' => $data['n_id'],
  30. 'zhuxi'=>$data['zhuxi'],
  31. 'zhuxi_phone'=>$data['zhuxi_phone'],
  32. 'constellation'=>$data['constellation'],
  33. 'hobby'=>$data['hobby'],
  34. 'appeals'=>$data['appeals'],
  35. 'hunshi' =>$data['hunshi'],
  36. 'is_zinv'=>$data['is_zinv'],
  37. 'zinv_sex'=>$data['zinv_sex'],
  38. 'is_du' =>$data['is_du'],
  39. 'children'=>$data['children'],
  40. 'home'=>$data['home'],
  41. 'is_car'=>$data['is_car'],
  42. 'car_model'=>$data['car_model'],
  43. 'fa_work'=>$data['fa_work'],
  44. 'ma_work'=>$data['ma_work'],
  45. 'graduation_school'=>$data['graduaction_school'],
  46. 'position'=>$data['position'],
  47. 'income'=>$data['income'],
  48. 'image'=>$data['image'],
  49. 'c_show_image' => $data['c_image'],
  50. 'n_show_image' => $data['n_image'],
  51. 'is_vip' => $data['is_vip'],
  52. 'create_at' => date('Y-m-d H:i:s')
  53. ];
  54. }
  55. else {
  56. $insert = [
  57. 'mid' => $mid,
  58. 'name' => $data['name'],
  59. 'phone' => $data['phone'],
  60. 'c_id' => $data['c_id'],
  61. 'm_uuid' => $data['uuid'],
  62. 'c_show_image' => $data['c_image'],
  63. 'n_show_image' => $data['n_image'],
  64. 'm_images' => $data['m_images'],
  65. 'is_vip' => $data['is_vip'],
  66. 'create_at' => date('Y-m-d H:i:s')
  67. ];
  68. }
  69. Db::startTrans();
  70. try {
  71. Db::name('store_examine')->insert($insert);
  72. Db::commit();
  73. }catch (Exception $e) {
  74. Db::rollback();
  75. $this->error('认证信息提交失败,联系管理员');
  76. }
  77. $this->success('认证信息已提交,等待审核');
  78. }
  79. /**
  80. * @return void
  81. * @throws \think\db\exception\DataNotFoundException
  82. * @throws \think\db\exception\ModelNotFoundException
  83. * @throws \think\exception\DbException
  84. * 展示审核页面
  85. */
  86. public function show1(){
  87. //type 1未认证 2 已认证 3认证失败 4 等待认证审核
  88. $mid = $this->check_login();
  89. $user_info = Db::name('store_member')->where('id',$mid)->value('vip_level');
  90. $exam = Db::name('store_examine')->where('mid',$mid)->where('is_deleted',0)->value('status');
  91. $data=[];
  92. if($exam){
  93. if($exam == 1){
  94. $type = 4;
  95. }
  96. if($exam==2) {
  97. $data = Db::name('store_member')
  98. ->alias('m')
  99. ->leftJoin('store_company c','m.working=c.id')
  100. ->where('m.id',$mid)
  101. ->field('username,phone,name')
  102. ->find();
  103. $type = 2;
  104. }
  105. if($exam==3){
  106. $data = Db::name('store_examine')
  107. ->where('mid',$mid)
  108. ->where('is_deleted',0)
  109. ->field('reason')
  110. ->find();
  111. $type =3;
  112. }
  113. }
  114. else{
  115. $type = 1;
  116. if($user_info==1){
  117. $data = Db::name('store_member')
  118. ->alias('m')
  119. ->join('store_company c','m.working=c.id')
  120. ->where('m.id',$mid)
  121. ->field('username,phone,name')
  122. ->find();
  123. $type = 2;
  124. }
  125. }
  126. $this->success('认证审核',['type'=>$type,'data'=>$data]);
  127. }
  128. public function show(){
  129. //type 1未认证 2 已认证 3认证失败 4 等待认证审核
  130. $mid = $this->check_login();
  131. $user_info = Db::name('store_member')->where('id',$mid)->value('vip_level');
  132. $exam = Db::name('store_examine')->where('mid',$mid)->where('is_deleted',0)->value('status');
  133. $data=[];
  134. if($exam){
  135. if($exam == 1){
  136. $type = 4;
  137. }
  138. if($exam==2) {
  139. $data = Db::name('store_member')
  140. ->alias('m')
  141. ->leftJoin('store_company c','m.working=c.id')
  142. ->where('m.id',$mid)
  143. ->field('username,phone,name')
  144. ->find();
  145. $type = 2;
  146. }
  147. if($exam==3){
  148. $data = Db::name('store_examine')
  149. ->where('mid',$mid)
  150. ->where('is_deleted',0)
  151. ->field('reason')
  152. ->find();
  153. $type =3;
  154. }
  155. }
  156. else{
  157. $type = 1;
  158. if($user_info==1){
  159. $data = Db::name('store_member')
  160. ->where('id',$mid)
  161. ->field('username,phone')
  162. ->find();
  163. $type = 2;
  164. }
  165. }
  166. $this->success('认证审核',['type'=>$type,'data'=>$data]);
  167. }
  168. /**
  169. * @return void
  170. * @throws Exception
  171. * @throws \think\exception\PDOException
  172. * 重新认证
  173. */
  174. public function new_authentication(){
  175. $mid = $this->check_login();
  176. Db::name('store_examine')->where('mid',$mid)->where('is_deleted',0)->update(['is_deleted'=>1]);
  177. $this->success('快去重新认证吧');
  178. }
  179. }