123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?php
- namespace app\api\controller;
- use app\common\model\NewsCate;
- use app\common\model\StoreGoods;
- use app\common\model\StoreGoodsItem;
- use app\common\model\UserAppointment;
- use app\common\model\UserCollect;
- use app\common\model\InformationArticle;
- use app\common\model\VideoCate;
- use app\common\model\VideoIntro;
- use app\common\model\GoodsCate;
- use think\Db;
- use library\tools\Data;
- /**
- * @title 预约
- * @controller Appointment
- * @group base
- */
- class Appointment extends Base
- {
- public function initialize()
- {
- parent::initialize();
- parent::checkLogin();
- }
- /**
- * @title 用户预约
- * @desc 目前只有商品预约
- * @author qc
- * @method POST
- * @url /api/Appointment/userAppointment
- * @header name:Authorization require:1 desc:Token
- * @param name:id type:int default:-- desc:商品id
- */
- public function userAppointment()
- {
- $app_id = input('post.id');
- if(!$app_id) $this->error('参数错误');
- $app_type = input('post.app_type',1);
- $app_info = [
- 'user_id' =>$this->user_id,
- 'app_id' =>$app_id,
- 'app_type' =>$app_type,
- 'create_at' =>date('Y-m-d H:i:s'),
- ];
- Data::save('UserAppointment',$app_info,'user_id',[ 'user_id' =>$this->user_id, 'app_id' =>$app_id,'app_type' =>input('post.app_type',1)]);
- $this->success('预约成功');
- }
- /**
- * @title 获取预约记录
- * @desc 获取预约记录
- * @author qc
- * @method GET
- * @url /api/Appointment/user_info
- * @header name:Authorization require:1 desc:Token
- * @param name:id type:int default:0 desc:视频id(不传查全部的视频商品)
- * @param name:page type:int default:1 desc:页数
- * @param name:page_num type:int default:20 desc:每页数量
- * @return name:id type:int default:-- desc:预约记录id
- * @return name:app_id type:int default:-- desc:预约商品id
- * @return name:name type:string default:-- desc:商品名称
- * @return name:cover type:string default:-- desc:商品封面
- * @return name:create_at type:string default:-- desc:时间
- */
- public function getUserAppointmentList()
- {
- $list = UserAppointment::field('a.id,a.app_id,a.create_at,g.name,g.cover')
- ->alias('a')
- ->leftJoin('StoreGoods g','g.id = a.app_id')
- ->order('a.create_at desc ,a.id desc')
- ->limit($this->off_set,$this->page_num)
- ->select()->toArray();
- $this->success('ok',['list'=>$list]);
- }
- /**
- * @title 取消预约
- * @desc 取消预约
- * @author qc
- * @method POST
- * @url /api/Appointment/cancelAppointment
- * @header name:Authorization require:1 desc:Token
- * @param name:ids type:string : default:'' desc:需要删除的id记录(用逗号隔开)
- */
- public function cancelAppointment()
- {
- $ids = input('post.ids','');
- if(!$ids) $this->error('请选择要取消预约的记录');
- UserAppointment::where('id','in',$ids)->where('user_id','=',$this->user_id)->delete();
- $this->success('取消成功');
- }
- }
|