Member.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\store\controller;
  15. use library\Controller;
  16. /**
  17. * 会员信息管理
  18. * Class Member
  19. * @package app\store\controller
  20. */
  21. class Member extends Controller
  22. {
  23. /**
  24. * 绑定数据表
  25. * @var string
  26. */
  27. protected $table = 'StoreMember';
  28. /**
  29. * 会员信息管理
  30. * @auth true
  31. * @menu true
  32. * @throws \think\Exception
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\ModelNotFoundException
  35. * @throws \think\exception\DbException
  36. * @throws \think\exception\PDOException
  37. */
  38. public function index()
  39. {
  40. $this->title = '会员信息管理';
  41. $query = $this->_query($this->table)->where('is_deleted',0)->like('nickname,phone');
  42. $query->dateBetween('create_at')->order('id desc')->page();
  43. }
  44. /**
  45. * 数据列表处理
  46. * @param array $data
  47. * @throws \think\db\exception\DataNotFoundException
  48. * @throws \think\db\exception\ModelNotFoundException
  49. * @throws \think\exception\DbException
  50. */
  51. protected function _index_page_filter(&$data)
  52. {
  53. foreach ($data as $k=>&$v){
  54. }
  55. }
  56. //删除货主
  57. public function remove()
  58. {
  59. $this->_save($this->table, ['is_deleted' => '1']);
  60. }
  61. //禁用货主
  62. public function forbid()
  63. {
  64. $this->_save($this->table, ['status' => '0']);
  65. }
  66. //启用货主
  67. public function resume()
  68. {
  69. $this->_save($this->table, ['status' => '1']);
  70. }
  71. }