123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <?php
- /**
- * @author: 吴汐
- * @email: 442384644@qq.com
- * @date: 2023/7/31
- */
- namespace app\adminapi\controller\v1\marketing;
- use app\adminapi\controller\AuthController;
- use app\services\system\SystemSignRewardServices;
- use think\facade\App;
- class SignRewards extends AuthController
- {
- /**
- * @param App $app
- * @param SystemSignRewardServices $services
- */
- public function __construct(App $app, SystemSignRewardServices $services)
- {
- parent::__construct($app);
- $this->services = $services;
- }
- /**
- * 签到奖励列表
- * @return \think\Response
- * @throws \ReflectionException
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author: 吴汐
- * @email: 442384644@qq.com
- * @date: 2023/7/31
- */
- public function index()
- {
- [$type] = $this->request->getMore([
- ['type', 0]
- ], true);
- $data = $this->services->getList($type);
- return app('json')->success($data);
- }
- /**
- * 新增签到奖励
- * @return \think\Response
- * @throws \FormBuilder\Exception\FormBuilderException
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author: 吴汐
- * @email: 442384644@qq.com
- * @date: 2023/7/31
- */
- public function addRewards()
- {
- [$type] = $this->request->getMore([
- ['type', 0]
- ], true);
- $data = $this->services->rewardsForm(0, $type);
- return app('json')->success($data);
- }
- /**
- * 修改签到奖励
- * @param $id
- * @return \think\Response
- * @throws \FormBuilder\Exception\FormBuilderException
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author: 吴汐
- * @email: 442384644@qq.com
- * @date: 2023/7/31
- */
- public function editRewards($id)
- {
- $data = $this->services->rewardsForm($id);
- return app('json')->success($data);
- }
- /**
- * 保存签到奖励
- * @param $id
- * @return \think\Response
- * @author: 吴汐
- * @email: 442384644@qq.com
- * @date: 2023/7/31
- */
- public function saveRewards($id)
- {
- $data = $this->request->postMore([
- ['type', 0],
- ['days', 0],
- ['point', 0],
- ['exp', 0]
- ]);
- $this->services->saveRewards($id, $data);
- return app('json')->success(100000);
- }
- /**
- * 删除签到奖励
- * @param $id
- * @return \think\Response
- * @author: 吴汐
- * @email: 442384644@qq.com
- * @date: 2023/7/31
- */
- public function delRewards($id)
- {
- $this->services->delete($id);
- return app('json')->success(100002);
- }
- }
|