Examine.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?php
  2. namespace app\store\controller;
  3. use library\Controller;
  4. use think\Db;
  5. /**
  6. * 会员认证审核
  7. * Class Auth
  8. * @package app\store\controller
  9. */
  10. class Examine extends Controller
  11. {
  12. /**
  13. * 绑定数据表
  14. * @var string
  15. */
  16. protected $table = 'store_examine';
  17. /**
  18. * 会员认证审核管理
  19. * @auth true
  20. * @menu true
  21. * @throws \think\Exception
  22. * @throws \think\db\exception\DataNotFoundException
  23. * @throws \think\db\exception\ModelNotFoundException
  24. * @throws \think\exception\DbException
  25. * @throws \think\exception\PDOException
  26. */
  27. public function index()
  28. {
  29. $this->title = '会员认证审核';
  30. $query = $this->_query($this->table)->alias('e')->join('store_member m','m.id=e.mid')->join('store_work_nature n','n.id=e.n_id')->like('m.username#name')->equal('e.status#status');
  31. $query->dateBetween('e.create_at')->where('e.is_deleted',0)->field('e.*,m.username,n.name nname')->order('e.id desc')->page();
  32. }
  33. /**
  34. * 添加快递公司
  35. * @auth false
  36. * @throws \think\Exception
  37. * @throws \think\db\exception\DataNotFoundException
  38. * @throws \think\db\exception\ModelNotFoundException
  39. * @throws \think\exception\DbException
  40. * @throws \think\exception\PDOException
  41. */
  42. public function add()
  43. {
  44. $this->_form($this->table, 'form');
  45. }
  46. /**
  47. * 编辑快递公司
  48. * @auth false
  49. * @throws \think\Exception
  50. * @throws \think\db\exception\DataNotFoundException
  51. * @throws \think\db\exception\ModelNotFoundException
  52. * @throws \think\exception\DbException
  53. * @throws \think\exception\PDOException
  54. */
  55. public function edit()
  56. {
  57. $this->_form($this->table, 'form');
  58. }
  59. /**
  60. * 表单数据处理
  61. * @param array $data
  62. * @auth true
  63. */
  64. protected function _form_filter(&$data)
  65. {
  66. if ($this->request->isPost()) {
  67. if(!isset($data['status'])){
  68. $this->error('请审核后提交');
  69. }
  70. if($data['status']==2){
  71. $info = Db::name('store_examine')->where('id',$data['id'])->find();
  72. $member = [
  73. // 'username'=>$info['name'],
  74. // 'phone'=>$info['phone'],
  75. 'working'=>$info['c_id'],
  76. 'vip_level'=>1,
  77. 'nature'=>$info['n_id'],
  78. 'constellation'=>$info['constellation'],
  79. 'hobby'=>$info['hobby'],
  80. 'status'=>$info['hunshi'],
  81. 'is_zinv'=>$info['is_zinv'],
  82. 'zinv_sex'=>$info['zinv_sex'],
  83. 'is_du'=>$info['is_du'],
  84. 'children'=>$info['children'],
  85. 'home'=>$info['home'],
  86. 'is_car'=>$info['is_car'],
  87. 'car_model'=>$info['car_model'],
  88. 'fa_work'=>$info['fa_work'],
  89. 'ma_work'=>$info['ma_work'],
  90. 'graduation_school'=>$info['graduation_school'],
  91. 'position'=>$info['position'],
  92. 'income'=>$info['income'],
  93. ];
  94. Db::name('store_member')->where('id',$info['mid'])->update($member);
  95. }
  96. $data['update_at']=date('Y-m-d H:i:s');
  97. }
  98. else{
  99. $data['describes_arr'] = explode(',',$data['m_images']);
  100. }
  101. }
  102. }