123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286 |
- <?php
- namespace app\admin\controller;
- use think\App;
- use think\Db;
- class Dinner extends Auth
- {
- public function __construct(App $app = null) {
- parent::__construct($app);
- $this->table='dinner';
- $this->model= new \app\common\model\Dinner();
- }
- public function index(){
- if(request()->isAjax()){
- //分页参数
- $length = input('rows',10,'intval'); //每页条数
- $page = input('page',1,'intval'); //第几页
- $start = ($page - 1) * $length; //分页开始位置
- //排序
- $sortRow = input('sidx','id','trim'); //排序列
- $sort = input('sord','desc','trim'); //排序方式
- $order = $sortRow.' '.$sort;
- $title = input('title','','trim');
- if($title){
- $map[] = ['name','like','%'.$title.'%'];
- }
- $enable = input('enable','','trim');
- if($enable != ''){
- $map[] = ['enable','=',$enable];
- }
- $type = input('type','','trim');
- if($type){
- $map[] = ['dinner_type_id','=',$type];
- }
- $map[] = ['org_id','=',$this->orgId];
- $map[] = ['cate','=',0];
- $map= empty($map) ? true: $map;
- //数据查询
- $lists = Db::name($this->table)->where($map)->limit($start,$length)->order(
- ['sort'=>'asc','id'=>'desc']
- )->select();
- foreach ($lists as $k=>$v){
- $lists[$k]['type'] = Db::name('dinner_type')
- ->field('name,color')
- ->where('id',$v['dinner_type_id'])
- ->find();
- $img = $v['imgs']?explode(',',$v['imgs']):[];
- $lists[$k]['img'] = $img?$img[0]:'';
- }
- //数据返回
- $totalCount = Db::name($this->table)->where($map)->count();
- $totalPage = ceil($totalCount/$length);
- $result['page'] = $page;
- $result['total'] = $totalPage;
- $result['records'] = $totalCount;
- $result['rows'] = $lists;
- return json($result);
- }else{
- $typeList = model('DinnerType')->getList($this->orgId);
- $this->assign('typeList',$typeList);
- return $this->fetch();
- }
- }
- // 特殊人群菜单
- public function index2(){
- if(request()->isAjax()){
- //分页参数
- $length = input('rows',10,'intval'); //每页条数
- $page = input('page',1,'intval'); //第几页
- $start = ($page - 1) * $length; //分页开始位置
- //排序
- $sortRow = input('sidx','id','trim'); //排序列
- $sort = input('sord','desc','trim'); //排序方式
- $order = $sortRow.' '.$sort;
- $title = input('title','','trim');
- if($title){
- $map[] = ['name','like','%'.$title.'%'];
- }
- $enable = input('enable','','trim');
- if($enable != ''){
- $map[] = ['enable','=',$enable];
- }
- $type = input('type','','trim');
- if($type){
- $map[] = ['dinner_type_id','=',$type];
- }
- $map[] = ['org_id','=',$this->orgId];
- $map[] = ['cate','=',1];
- $map= empty($map) ? true: $map;
- //数据查询
- $lists = Db::name($this->table)->where($map)->limit($start,$length)->order(
- ['sort'=>'asc','id'=>'desc']
- )->select();
- foreach ($lists as $k=>$v){
- $lists[$k]['dinner_type'] = Db::name('dinner_type')
- ->field('name,color')
- ->where('id',$v['dinner_type_id'])
- ->find();
- $img = $v['imgs']?explode(',',$v['imgs']):[];
- $lists[$k]['img'] = $img?$img[0]:'';
- }
- //数据返回
- $totalCount = Db::name($this->table)->where($map)->count();
- $totalPage = ceil($totalCount/$length);
- $result['page'] = $page;
- $result['total'] = $totalPage;
- $result['records'] = $totalCount;
- $result['rows'] = $lists;
- return json($result);
- }else{
- $typeList = model('DinnerType')->getList($this->orgId);
- $this->assign('typeList',$typeList);
- return $this->fetch();
- }
- }
- /**
- * 新增/编辑
- */
- public function add($id=0){
- if(request()->isPost()){
- $res = $this->model->updates(0);
- if($res){
- $this->success('操作成功',url('index'));
- }else{
- $this->error($this->model->getError());
- }
- }else{
- if($id){
- $info =Db::name($this->table)->where('id',$id)->find();
- $this->assign('info',$info);
- }
- $typeList = model('DinnerType')->getList($this->orgId);
- $this->assign('typeList',$typeList);
- return $this->fetch();
- }
- }
- public function add2($id=0){
- if(request()->isPost()){
- $res = $this->model->updates(1);
- if($res){
- $this->success('操作成功',url('index2'));
- }else{
- $this->error($this->model->getError());
- }
- }else{
- if($id){
- $info =Db::name($this->table)->where('id',$id)->find();
- $this->assign('info',$info);
- }
- $typeList = model('DinnerType')->getList($this->orgId);
- $this->assign('typeList',$typeList);
- return $this->fetch();
- }
- }
- /**
- * 删除记录
- * @param int $id
- */
- public function del($id=0){
- if(!$id){
- $this->error('参数错误');
- }
- $res = db($this->table)->where('id',$id)->setField('del',1);
- if($res){
- $this->success('删除成功');
- }else{
- $this->error('删除失败');
- }
- }
- public function detail($id){
- $res = db($this->table)->where('id',$id)->find();
- $res['imgs'] = explode(',',$res['imgs']);
- $this->assign('info',$res);
- return $this->fetch();
- }
- /**
- * 改变字段值
- * @param int $fv
- * @param string $fn
- * @param int $fv
- */
- public function changeField($id=0,$fn='',$fv=0){
- if(!$fn||!$id){
- $this->error('参数错误');
- }
- $res = db($this->table)->where('id',$id)->setField($fn,$fv);
- if($res){
- $name = '菜单管理:';
- $content = '';
- if($fn == 'enable'){
- $content = $name.'预约餐下架';
- if($fv == 1){
- $content = $name.'预约餐上架';
- }
- }elseif ($fn == 'today_enable'){
- $content = $name.'当天餐下架';
- if($fv == 1){
- $content = $name.'当天餐上架';
- }
- }
- $this->success('操作成功');
- }else{
- $this->error('操作失败');
- }
- }
- public function disableall(){
- $res = db($this->table)
- ->where('org_id',$this->orgId)
- ->update([
- 'enable'=>0,
- 'update_time'=>getTime()
- ]);
- if($res){
- $ids = db($this->table)
- ->where('org_id',$this->orgId)
- ->column('id');
- $this->success('操作成功');
- }else{
- $this->error('操作失败');
- }
- }
- public function enableall(){
- $res = db($this->table)
- ->where('org_id',$this->orgId)
- ->update([
- 'enable'=>1,
- 'update_time'=>getTime()
- ]);
- if($res){
- $this->success('操作成功');
- }else{
- $this->error('操作失败');
- }
- }
- public function disablealltoday(){
- $res = db($this->table)
- ->where('org_id',$this->orgId)
- ->update([
- 'today_enable'=>0,
- 'update_time'=>getTime()
- ]);
- if($res){
- $ids = db($this->table)
- ->where('org_id',$this->orgId)
- ->column('id');
- $this->success('操作成功');
- }else{
- $this->error('操作失败');
- }
- }
- public function enablealltoday(){
- $res = db($this->table)
- ->where('org_id',$this->orgId)
- ->update([
- 'today_enable'=>1,
- 'update_time'=>getTime()
- ]);
- if($res){
- $this->success('操作成功');
- }else{
- $this->error('操作失败');
- }
- }
- }
|