Appointment.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\model\NewsCate;
  4. use app\common\model\StoreGoods;
  5. use app\common\model\StoreGoodsItem;
  6. use app\common\model\UserAppointment;
  7. use app\common\model\UserCollect;
  8. use app\common\model\InformationArticle;
  9. use app\common\model\VideoCate;
  10. use app\common\model\VideoIntro;
  11. use app\common\model\GoodsCate;
  12. use think\Db;
  13. use library\tools\Data;
  14. /**
  15. * @title 预约
  16. * @controller Appointment
  17. * @group base
  18. */
  19. class Appointment extends Base
  20. {
  21. public function initialize()
  22. {
  23. parent::initialize();
  24. parent::checkLogin();
  25. }
  26. /**
  27. * @title 用户预约
  28. * @desc 目前只有商品预约
  29. * @author qc
  30. * @method POST
  31. * @url /api/Appointment/userAppointment
  32. * @header name:Authorization require:1 desc:Token
  33. * @param name:id type:int default:-- desc:商品id
  34. */
  35. public function userAppointment()
  36. {
  37. $app_id = input('post.id');
  38. if(!$app_id) $this->error('参数错误');
  39. $app_type = input('post.app_type',1);
  40. $app_info = [
  41. 'user_id' =>$this->user_id,
  42. 'app_id' =>$app_id,
  43. 'app_type' =>$app_type,
  44. 'create_at' =>date('Y-m-d H:i:s'),
  45. ];
  46. Data::save('UserAppointment',$app_info,'user_id',[ 'user_id' =>$this->user_id, 'app_id' =>$app_id,'app_type' =>input('post.app_type',1)]);
  47. $this->success('预约成功');
  48. }
  49. /**
  50. * @title 获取预约记录
  51. * @desc 获取预约记录
  52. * @author qc
  53. * @method GET
  54. * @url /api/Appointment/user_info
  55. * @header name:Authorization require:1 desc:Token
  56. * @param name:id type:int default:0 desc:视频id(不传查全部的视频商品)
  57. * @param name:page type:int default:1 desc:页数
  58. * @param name:page_num type:int default:20 desc:每页数量
  59. * @return name:id type:int default:-- desc:预约记录id
  60. * @return name:app_id type:int default:-- desc:预约商品id
  61. * @return name:name type:string default:-- desc:商品名称
  62. * @return name:cover type:string default:-- desc:商品封面
  63. * @return name:create_at type:string default:-- desc:时间
  64. */
  65. public function getUserAppointmentList()
  66. {
  67. $list = UserAppointment::field('a.id,a.app_id,a.create_at,g.name,g.cover')
  68. ->alias('a')
  69. ->leftJoin('StoreGoods g','g.id = a.app_id')
  70. ->order('a.create_at desc ,a.id desc')
  71. ->limit($this->off_set,$this->page_num)
  72. ->select()->toArray();
  73. $this->success('ok',['list'=>$list]);
  74. }
  75. /**
  76. * @title 取消预约
  77. * @desc 取消预约
  78. * @author qc
  79. * @method POST
  80. * @url /api/Appointment/cancelAppointment
  81. * @header name:Authorization require:1 desc:Token
  82. * @param name:ids type:string : default:'' desc:需要删除的id记录(用逗号隔开)
  83. */
  84. public function cancelAppointment()
  85. {
  86. $ids = input('post.ids','');
  87. if(!$ids) $this->error('请选择要取消预约的记录');
  88. UserAppointment::where('id','in',$ids)->where('user_id','=',$this->user_id)->delete();
  89. $this->success('取消成功');
  90. }
  91. }