Activity.php 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <?php
  2. namespace app\store\controller;
  3. use Endroid\QrCode\QrCode;
  4. use library\Controller;
  5. use think\Db;
  6. /**
  7. * 活动管理
  8. * Class Auth
  9. * @package app\store\controller
  10. */
  11. class Activity extends Controller
  12. {
  13. /**
  14. * 绑定数据表
  15. * @var string
  16. */
  17. protected $table = 'store_activity';
  18. /**
  19. * 活动列表管理
  20. * @auth true
  21. * @menu true
  22. * @throws \think\Exception
  23. * @throws \think\db\exception\DataNotFoundException
  24. * @throws \think\db\exception\ModelNotFoundException
  25. * @throws \think\exception\DbException
  26. * @throws \think\exception\PDOException
  27. */
  28. public function index()
  29. {
  30. $this->title = '活动列表管理';
  31. $query = $this->_query($this->table)->like('title');
  32. $query->where('is_deleted',0)->dateBetween('create_at')->order('id desc')->page();
  33. }
  34. /**
  35. * 数据列表处理
  36. * @auth true
  37. * @menu true
  38. * @param array $data
  39. * @throws \think\db\exception\DataNotFoundException
  40. * @throws \think\db\exception\ModelNotFoundException
  41. * @throws \think\exception\DbException
  42. */
  43. protected function _index_page_filter(&$data)
  44. {
  45. foreach ($data as &$v){
  46. //1活动未开始、2活动报名中、3报名已满、4报名结束、5活动进中、6活动结束
  47. $v['status']=av_status($v['id']);
  48. $v['baoming'] = Db::name('store_activity_sing')->where('a_id',$v['id'])->count();
  49. $v['sing'] = Db::name('store_activity_sing')->where('a_id',$v['id'])->where('is_sing','=',1)->count();
  50. $v['pre'] = 0;
  51. if( $v['baoming']>0) {
  52. $v['pre'] = ($v['sing']/$v['baoming']) * 100;
  53. }
  54. }
  55. }
  56. /**
  57. * 添加活动
  58. * @auth true
  59. * @menu true
  60. * @throws \think\Exception
  61. * @throws \think\db\exception\DataNotFoundException
  62. * @throws \think\db\exception\ModelNotFoundException
  63. * @throws \think\exception\DbException
  64. * @throws \think\exception\PDOException
  65. */
  66. public function add()
  67. {
  68. $this->_form($this->table, 'form');
  69. }
  70. /**
  71. * 编辑活动
  72. * @auth true
  73. * @menu true
  74. * @throws \think\Exception
  75. * @throws \think\db\exception\DataNotFoundException
  76. * @throws \think\db\exception\ModelNotFoundException
  77. * @throws \think\exception\DbException
  78. * @throws \think\exception\PDOException
  79. */
  80. function edit()
  81. {
  82. $this->_form($this->table, 'form');
  83. }
  84. /**
  85. * 活动详情
  86. * @auth true
  87. * @menu true
  88. * @throws \think\Exception
  89. * @throws \think\db\exception\DataNotFoundException
  90. * @throws \think\db\exception\ModelNotFoundException
  91. * @throws \think\exception\DbException
  92. * @throws \think\exception\PDOException
  93. */
  94. function info()
  95. {
  96. $id = input('id');
  97. $info =Db::name('store_activity')->where('id',$id)->find();
  98. $nature = explode(',',$info['nature']);
  99. $arr =[];
  100. foreach ($nature as $k=>$v){
  101. if($v) $arr[] = $userinfo['xingzhi']=Db::name('store_work_nature')->where('id',$v)->value('name');
  102. }
  103. $info['nature']=implode(',',$arr);
  104. $this->assign('info',$info);
  105. $this->fetch();
  106. }
  107. public function detail(){
  108. $id=$this->request->get('id');
  109. $this->title = Db::name($this->table)->where('id',$id)->value('title').'--参与人员';
  110. $query = $this->_query('store_activity_sing')->join('store_member m','m_id=m.id')->where('a_id',$id)->field('nickname,sing_at,is_sing,store_activity_sing.create_at');
  111. $query->order('store_activity_sing.id desc')->page();
  112. $this->fetch();
  113. }
  114. /**
  115. * 表单数据处理
  116. * @auth true
  117. * @menu true
  118. * @param array $data
  119. */
  120. protected function _form_filter(&$data)
  121. {
  122. if ($this->request->isPost()) {
  123. $nuture = [];
  124. if(isset($data['nature']) && !empty($data['nature'])){
  125. foreach ($data['nature'] as $key=>$value){
  126. if($value) $nuture[] = $key;
  127. }
  128. }
  129. $data['nature'] = implode(',',$nuture);
  130. $education = [];
  131. if(isset($data['education']) && !empty($data['education'])){
  132. foreach ($data['education'] as $key=>$value){
  133. if($value){
  134. switch ($key){
  135. case 1:
  136. $education[] = '高中';
  137. break;
  138. case 2:
  139. $education[] = '大专';
  140. break;
  141. case 3:
  142. $education[] = '本科';
  143. break;
  144. case 4:
  145. $education[] = '研究生';
  146. break;
  147. case 5:
  148. $education[] = '硕士';
  149. break;
  150. case 6:
  151. $education[] = '博士';
  152. }
  153. }
  154. }
  155. }
  156. $data['education'] = implode(',',$education);
  157. if(empty($data['id'])) {
  158. $data['status']=1;
  159. $data['create_at'] = date('Y-m-d H:i:s');
  160. }
  161. }
  162. else {
  163. $status = 1;
  164. $nature=[];
  165. if($data) {
  166. $nature = explode(',', $data['nature']);
  167. $status=2;
  168. }
  169. $class = Db::name('store_work_nature')->where('is_deleted', 0)->column('name', 'id');
  170. $this->assign('naturearr',$nature);
  171. $this->assign('status',$status);
  172. $this->assign('nature', $class);
  173. }
  174. }
  175. /**
  176. * 表单数据处理
  177. * @auth true
  178. * @menu true
  179. * @param array $data
  180. */
  181. public function del()
  182. {
  183. $this->_save($this->table, ['is_deleted' => '1']);
  184. }
  185. public function sing_image(){
  186. $id= input('id');
  187. $img = Db::name('store_activity')->where('id',$id)->find();
  188. if($img['sing_image']==''){
  189. $sing_img = setsingcode($id);
  190. Db::name('store_activity')->where('id',$id)->update(['sing_image'=>$sing_img]);
  191. $this->success('签到二维码已生成');
  192. }
  193. else{
  194. $this->error('已经有签到二维码了');
  195. }
  196. }
  197. public function sing_img(){
  198. $id= input('id');
  199. $img = Db::name('store_activity')->where('id',$id)->find();
  200. if($img['sing_img']==''){
  201. $sing_img = setintivecode($id);
  202. Db::name('store_activity')->where('id',$id)->update(['sing_img'=>$sing_img]);
  203. $this->success('报名二维码已生成');
  204. }
  205. else{
  206. $this->error('已经有报名二维码了');
  207. }
  208. }
  209. }