12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use app\common\model\ApplicationPresentation;
- use app\common\model\Home;
- use think\Exception;
- /**
- * 首页
- */
- class Index extends Api
- {
- protected $noNeedLogin = ['index'];
- protected $noNeedRight = ['*'];
- /**
- * 首页配置
- *
- */
- public function index()
- {
- $this->success('请求成功',Home::all());
- }
- /**
- * 申请演示
- * @ApiMethod("POST")
- * @ApiHeaders (name="token")
- * @ApiParams (name="name", description="用户名")
- * @ApiParams (name="mobile", description="联系方式")
- */
- public function application_presentation(){
- $rule = [
- 'name|用户名' => 'require',
- 'mobile|联系方式' => 'require'
- ];
- $data = input();
- $val = $this->validate($data,$rule);
- if (!is_bool($val)){
- return $val;
- }
- try {
- $data['uid'] = $this->auth->id;
- ApplicationPresentation::create($data);
- $this->success('申请成功');
- }catch (Exception $e){
- $this->error($e);
- return false;
- }
- }
- }
|