123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- <?php
- namespace app\store\controller;
- use Endroid\QrCode\QrCode;
- use library\Controller;
- use think\Db;
- /**
- * 活动管理
- * Class Auth
- * @package app\store\controller
- */
- class Activity extends Controller
- {
- /**
- * 绑定数据表
- * @var string
- */
- protected $table = 'store_activity';
- /**
- * 活动列表管理
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function index()
- {
- $this->title = '活动列表管理';
- $query = $this->_query($this->table)->like('title');
- $query->where('is_deleted',0)->dateBetween('create_at')->order('id desc')->page();
- }
- /**
- * 数据列表处理
- * @auth true
- * @menu true
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- protected function _index_page_filter(&$data)
- {
- foreach ($data as &$v){
- //1活动未开始、2活动报名中、3报名已满、4报名结束、5活动进中、6活动结束
- $v['status']=av_status($v['id']);
- $v['baoming'] = Db::name('store_activity_sing')->where('a_id',$v['id'])->count();
- $v['sing'] = Db::name('store_activity_sing')->where('a_id',$v['id'])->where('is_sing','=',1)->count();
- $v['pre'] = 0;
- if( $v['baoming']>0) {
- $v['pre'] = ($v['sing']/$v['baoming']) * 100;
- }
- }
- }
- /**
- * 添加活动
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function add()
- {
- $this->_form($this->table, 'form');
- }
- /**
- * 编辑活动
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- function edit()
- {
- $this->_form($this->table, 'form');
- }
- /**
- * 活动详情
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- function info()
- {
- $id = input('id');
- $info =Db::name('store_activity')->where('id',$id)->find();
- $nature = explode(',',$info['nature']);
- $arr =[];
- foreach ($nature as $k=>$v){
- if($v) $arr[] = $userinfo['xingzhi']=Db::name('store_work_nature')->where('id',$v)->value('name');
- }
- $info['nature']=implode(',',$arr);
- $this->assign('info',$info);
- $this->fetch();
- }
- public function detail(){
- $id=$this->request->get('id');
- $this->title = Db::name($this->table)->where('id',$id)->value('title').'--参与人员';
- $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');
- $query->order('store_activity_sing.id desc')->page();
- $this->fetch();
- }
- /**
- * 表单数据处理
- * @auth true
- * @menu true
- * @param array $data
- */
- protected function _form_filter(&$data)
- {
- if ($this->request->isPost()) {
- $nuture = [];
- if(isset($data['nature']) && !empty($data['nature'])){
- foreach ($data['nature'] as $key=>$value){
- if($value) $nuture[] = $key;
- }
- }
- $data['nature'] = implode(',',$nuture);
- $education = [];
- if(isset($data['education']) && !empty($data['education'])){
- foreach ($data['education'] as $key=>$value){
- if($value){
- switch ($key){
- case 1:
- $education[] = '高中';
- break;
- case 2:
- $education[] = '大专';
- break;
- case 3:
- $education[] = '本科';
- break;
- case 4:
- $education[] = '研究生';
- break;
- case 5:
- $education[] = '硕士';
- break;
- case 6:
- $education[] = '博士';
- }
- }
- }
- }
- $data['education'] = implode(',',$education);
- if(empty($data['id'])) {
- $data['status']=1;
- $data['create_at'] = date('Y-m-d H:i:s');
- }
- }
- else {
- $status = 1;
- $nature=[];
- if($data) {
- $nature = explode(',', $data['nature']);
- $status=2;
- }
- $class = Db::name('store_work_nature')->where('is_deleted', 0)->column('name', 'id');
- $this->assign('naturearr',$nature);
- $this->assign('status',$status);
- $this->assign('nature', $class);
- }
- }
- /**
- * 表单数据处理
- * @auth true
- * @menu true
- * @param array $data
- */
- public function del()
- {
- $this->_save($this->table, ['is_deleted' => '1']);
- }
- public function sing_image(){
- $id= input('id');
- $img = Db::name('store_activity')->where('id',$id)->find();
- if($img['sing_image']==''){
- $sing_img = setsingcode($id);
- Db::name('store_activity')->where('id',$id)->update(['sing_image'=>$sing_img]);
- $this->success('签到二维码已生成');
- }
- else{
- $this->error('已经有签到二维码了');
- }
- }
- public function sing_img(){
- $id= input('id');
- $img = Db::name('store_activity')->where('id',$id)->find();
- if($img['sing_img']==''){
- $sing_img = setintivecode($id);
- Db::name('store_activity')->where('id',$id)->update(['sing_img'=>$sing_img]);
- $this->success('报名二维码已生成');
- }
- else{
- $this->error('已经有报名二维码了');
- }
- }
- }
|