Examine.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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')->like('m.username#name')->equal('e.status#status');
  31. $query->dateBetween('e.create_at')->where('e.is_deleted',0)->field('e.*,m.username')->order('e.id desc')->page();
  32. }
  33. protected function _index_page_filter(&$data)
  34. {
  35. foreach ($data as &$v){
  36. $v['n_id']=Db::name('store_work_nature')->where('id',$v['n_id'])->value('name');
  37. }
  38. }
  39. /**
  40. * 添加快递公司
  41. * @auth false
  42. * @throws \think\Exception
  43. * @throws \think\db\exception\DataNotFoundException
  44. * @throws \think\db\exception\ModelNotFoundException
  45. * @throws \think\exception\DbException
  46. * @throws \think\exception\PDOException
  47. */
  48. public function add()
  49. {
  50. $this->_form($this->table, 'form');
  51. }
  52. /**
  53. * 编辑快递公司
  54. * @auth false
  55. * @throws \think\Exception
  56. * @throws \think\db\exception\DataNotFoundException
  57. * @throws \think\db\exception\ModelNotFoundException
  58. * @throws \think\exception\DbException
  59. * @throws \think\exception\PDOException
  60. */
  61. public function edit()
  62. {
  63. $this->_form($this->table, 'form');
  64. }
  65. /**
  66. * 表单数据处理
  67. * @param array $data
  68. * @auth true
  69. */
  70. protected function _form_filter(&$data)
  71. {
  72. if ($this->request->isPost()) {
  73. if(!isset($data['status'])){
  74. $this->error('请审核后提交');
  75. }
  76. if($data['status']==2){
  77. $info = Db::name('store_examine')->where('id',$data['id'])->find();
  78. $member = [
  79. // 'username'=>$info['name'],
  80. // 'phone'=>$info['phone'],
  81. 'working'=>$info['c_id'],
  82. 'vip_level'=>1,
  83. 'nature'=>$info['n_id'],
  84. 'constellation'=>$info['constellation'],
  85. 'hobby'=>$info['hobby'],
  86. 'status'=>$info['hunshi'],
  87. 'is_zinv'=>$info['is_zinv'],
  88. 'zinv_sex'=>$info['zinv_sex'],
  89. 'is_du'=>$info['is_du'],
  90. 'children'=>$info['children'],
  91. 'home'=>$info['home'],
  92. 'is_car'=>$info['is_car'],
  93. 'car_model'=>$info['car_model'],
  94. 'fa_work'=>$info['fa_work'],
  95. 'ma_work'=>$info['ma_work'],
  96. 'graduation_school'=>$info['graduation_school'],
  97. 'position'=>$info['position'],
  98. 'income'=>$info['income'],
  99. ];
  100. Db::name('store_member')->where('id',$info['mid'])->update($member);
  101. }
  102. $data['update_at']=date('Y-m-d H:i:s');
  103. }
  104. else{
  105. $data['describes_arr'] = explode(',',$data['m_images']);
  106. }
  107. }
  108. }