MemberCollection.php 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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\user\controller;
  15. use library\Controller;
  16. use think\Db;
  17. use function GuzzleHttp\Psr7\build_query;
  18. /**
  19. * 会员信息管理
  20. * Class Member
  21. * @package app\user\controller
  22. */
  23. class MemberCollection extends Controller
  24. {
  25. /**
  26. * 绑定数据表
  27. * @var string
  28. */
  29. protected $table = 'store_order_info';
  30. /**
  31. * 藏品管理
  32. * @auth true
  33. * @menu true
  34. * @throws \think\Exception
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. * @throws \think\exception\DbException
  38. * @throws \think\exception\PDOException
  39. */
  40. public function index()
  41. {
  42. $this->title = '藏品记录';
  43. $hash_send=$this->request->get('hash_send');
  44. $query = $this->_query($this->table)->whereIn('status','1,3');
  45. if ($hash_send){
  46. if ($hash_send==1){
  47. $query->where('collectors_hash','neq','');
  48. }else if ($hash_send==2){
  49. $query->where('collectors_hash','eq','');
  50. }
  51. }
  52. $query->dateBetween('create_at')->order('id desc')->page();
  53. }
  54. /**
  55. * 数据列表处理
  56. * @auth true
  57. * @menu true
  58. * @param array $data
  59. * @throws \think\db\exception\DataNotFoundException
  60. * @throws \think\db\exception\ModelNotFoundException
  61. * @throws \think\exception\DbException
  62. */
  63. protected function _index_page_filter(&$data)
  64. {
  65. foreach ($data as $k=>&$v){
  66. $v['pro_info'] =json_decode($v['pro_info'],true);
  67. $info = Db::name('store_member')->where('id',$v['mid'])->field('name,phone,wallet_address')->find();
  68. $v['scz'] = $info['name'].'('.$info['phone'].')';
  69. $v['wallet_address'] = $info['wallet_address'];
  70. $pro_info = Db::name('store_collection')->where('id',$v['c_id'])->field('one_given_day,other_given_day')->find();
  71. $log = Db::name('store_collect_examples_log')
  72. ->where('order_info_id',$v['id'])
  73. ->count();
  74. if (!$log){
  75. if ($pro_info['one_given_day']!=0){
  76. $v['exam_time'] = date('Y-m-d H:i:s',strtotime($v['create_at'])+($pro_info['one_given_day']*24*60*60));
  77. }else{
  78. $v['exam_time'] = $v['create_at'];
  79. }
  80. }else{
  81. if ($pro_info['other_given_day']!=0){
  82. $v['exam_time'] = date('Y-m-d H:i:s',strtotime($v['create_at'])+($pro_info['other_given_day']*24*60*60));
  83. }else{
  84. $v['exam_time'] = $v['create_at'];
  85. }
  86. }
  87. }
  88. }
  89. }