Activity.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <?php
  2. namespace app\store\controller;
  3. use Endroid\QrCode\QrCode;
  4. use library\Controller;
  5. use think\Db;
  6. class Activity extends Controller
  7. {
  8. /**
  9. * 绑定数据表
  10. * @var string
  11. */
  12. protected $table = 'store_activity';
  13. /**
  14. * 活动列表管理
  15. * @auth true
  16. * @menu true
  17. * @throws \think\Exception
  18. * @throws \think\db\exception\DataNotFoundException
  19. * @throws \think\db\exception\ModelNotFoundException
  20. * @throws \think\exception\DbException
  21. * @throws \think\exception\PDOException
  22. */
  23. public function index()
  24. {
  25. $this->title = '活动列表管理';
  26. $query = $this->_query($this->table)->like('title');
  27. $query->dateBetween('create_at')->order('id desc')->page();
  28. }
  29. /**
  30. * 数据列表处理
  31. * @auth true
  32. * @menu true
  33. * @param array $data
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. * @throws \think\exception\DbException
  37. */
  38. protected function _index_page_filter(&$data)
  39. {
  40. foreach ($data as &$v){
  41. //1活动未开始、2活动报名中、3报名已满、4报名结束、5活动进中、6活动结束
  42. $v['status']=av_status($v['id']);
  43. $v['baoming'] = Db::name('store_activity_sing')->where('a_id',$v['id'])->count();
  44. $v['sing'] = Db::name('store_activity_sing')->where('a_id',$v['id'])->where('is_sing','=',1)->count();
  45. $v['pre'] = 0;
  46. if( $v['baoming']>0) {
  47. $v['pre'] = ($v['sing']/$v['baoming']) * 100;
  48. }
  49. }
  50. }
  51. /**
  52. * 添加商品
  53. * @auth true
  54. * @menu true
  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 add()
  62. {
  63. $this->_form($this->table, 'form');
  64. }
  65. /**
  66. * 编辑商品
  67. * @auth true
  68. * @menu true
  69. * @throws \think\Exception
  70. * @throws \think\db\exception\DataNotFoundException
  71. * @throws \think\db\exception\ModelNotFoundException
  72. * @throws \think\exception\DbException
  73. * @throws \think\exception\PDOException
  74. */
  75. function edit()
  76. {
  77. $this->_form($this->table, 'form');
  78. }
  79. /**
  80. * 商品详情
  81. * @auth true
  82. * @menu true
  83. * @throws \think\Exception
  84. * @throws \think\db\exception\DataNotFoundException
  85. * @throws \think\db\exception\ModelNotFoundException
  86. * @throws \think\exception\DbException
  87. * @throws \think\exception\PDOException
  88. */
  89. function info()
  90. {
  91. $this->_form($this->table, 'info');
  92. }
  93. public function detail(){
  94. $id=$this->request->get('id');
  95. $this->title = Db::name($this->table)->where('id',$id)->value('title').'--参与人员';
  96. $query = $this->_query('store_activity_sing')->join('store_member m','m_id=m.id')->where('a_id',$id)->field('nickname,is_sing,store_activity_sing.create_at');
  97. $query->order('store_activity_sing.id desc')->page();
  98. $this->fetch();
  99. }
  100. /**
  101. * 表单数据处理
  102. * @auth true
  103. * @menu true
  104. * @param array $data
  105. */
  106. protected function _form_filter(&$data)
  107. {
  108. if ($this->request->isPost()) {
  109. $nuture = [];
  110. if(isset($data['nature']) && !empty($data['nature'])){
  111. foreach ($data['nature'] as $key=>$value){
  112. if($value) $nuture[] = $key;
  113. }
  114. }
  115. $data['nature'] = implode(',',$nuture);
  116. $data['create_at']=date('Y-m-d H:i:s');
  117. }
  118. else {
  119. $class = Db::name('store_work_nature')->where('is_deleted', 0)->column('name', 'id');
  120. $this->assign('naturearr', explode(',', $data['nature']));
  121. $this->assign('nature', $class);
  122. }
  123. }
  124. /**
  125. * 表单数据处理
  126. * @auth true
  127. * @menu true
  128. * @param array $data
  129. */
  130. public function del()
  131. {
  132. $this->_save($this->table, ['is_deleted' => '1']);
  133. }
  134. public function Qrcode(){
  135. }
  136. }