123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <?php
- namespace app\store\controller;
- use Endroid\QrCode\QrCode;
- use library\Controller;
- use think\Db;
- 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->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()
- {
- $this->_form($this->table, 'info');
- }
- 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,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);
- $data['create_at']=date('Y-m-d H:i:s');
- }
- else {
- $class = Db::name('store_work_nature')->where('is_deleted', 0)->column('name', 'id');
- $this->assign('naturearr', explode(',', $data['nature']));
- $this->assign('nature', $class);
- }
- }
- /**
- * 表单数据处理
- * @auth true
- * @menu true
- * @param array $data
- */
- public function del()
- {
- $this->_save($this->table, ['is_deleted' => '1']);
- }
- public function Qrcode(){
- }
- }
|