Index.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\model\ApplicationPresentation;
  5. use app\common\model\Home;
  6. use think\Exception;
  7. /**
  8. * 首页
  9. */
  10. class Index extends Api
  11. {
  12. protected $noNeedLogin = ['index'];
  13. protected $noNeedRight = ['*'];
  14. /**
  15. * 首页配置
  16. *
  17. */
  18. public function index()
  19. {
  20. $this->success('请求成功',Home::all());
  21. }
  22. /**
  23. * 申请演示
  24. * @ApiMethod("POST")
  25. * @ApiHeaders (name="token")
  26. * @ApiParams (name="name", description="用户名")
  27. * @ApiParams (name="mobile", description="联系方式")
  28. */
  29. public function application_presentation(){
  30. $rule = [
  31. 'name|用户名' => 'require',
  32. 'mobile|联系方式' => 'require'
  33. ];
  34. $data = input();
  35. $val = $this->validate($data,$rule);
  36. if (!is_bool($val)){
  37. return $val;
  38. }
  39. try {
  40. $data['uid'] = $this->auth->id;
  41. ApplicationPresentation::create($data);
  42. $this->success('申请成功');
  43. }catch (Exception $e){
  44. $this->error($e);
  45. return false;
  46. }
  47. }
  48. }