Integral.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. namespace app\user\controller;
  3. use library\Controller;
  4. use think\Db;
  5. /**
  6. * 会员明信片
  7. * Class Integral
  8. * @package app\user\controller
  9. */
  10. class Integral extends Controller
  11. {
  12. protected $table ="CrystalInfo";
  13. /**
  14. * 明信片变更列表
  15. * @auth true
  16. * @menu true
  17. */
  18. public function index()
  19. {
  20. $this->title = '明信片列表';
  21. $query = $this->_query($this->table);
  22. $where= [];
  23. $int_type = Db::table('crystal_type')->where('status',1)->select();
  24. $this->int_type = array_column($int_type,null,'id');
  25. if($this->request->request('phone')) $where[]= ['m.phone','=',$this->request->request('phone')];
  26. $where[]= ['i.is_deleted','=',0];
  27. $query->alias('i')
  28. ->field('i.* ,m.headimg,m.name,m.phone')
  29. ->join('store_member m',' m.id = i.user_id ','LEFT');
  30. if(!empty($where)) $query->where($where);
  31. $query ->order('i.id desc')->page();
  32. }
  33. /**
  34. * 删除明信片日志
  35. * @auth true
  36. * @menu true
  37. */
  38. public function del()
  39. {
  40. $this->_save($this->table, ['is_deleted' => 1]);
  41. }
  42. }