截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SignDaily.php 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <?php
  2. namespace app\admin\controller\sign_daily;
  3. use app\admin\logic\sign_daily\SignDailyLogic;
  4. use app\admin\validate\sign_daily\SignDailyValidate;
  5. use app\common\basics\AdminBase;
  6. use app\common\server\JsonServer;
  7. /**
  8. * 签到
  9. * Class SignDaily
  10. * @package app\admin\controller\shop
  11. */
  12. class SignDaily extends AdminBase
  13. {
  14. /**
  15. * @notes 连续签到列表
  16. * @return \think\response\Json|\think\response\View
  17. * @author 段誉
  18. * @date 2022/2/17 14:28
  19. */
  20. public function lists()
  21. {
  22. if ($this->request->isAjax()) {
  23. $lists = SignDailyLogic::lists();
  24. return JsonServer::success('获取成功', $lists);
  25. }
  26. return view('sign_daily/lists', [
  27. 'config' => SignDailyLogic::getSignRule()
  28. ]);
  29. }
  30. /**
  31. * @notes 签到记录
  32. * @return \think\response\Json|void
  33. * @author 段誉
  34. * @date 2022/2/17 14:29
  35. */
  36. public function record()
  37. {
  38. if ($this->request->isAjax()) {
  39. $get = $this->request->get();
  40. return JsonServer::success('获取成功', SignDailyLogic::record($get));
  41. }
  42. }
  43. /**
  44. * @notes 每日签到奖励
  45. * @return \think\response\Json|void
  46. * @author 段誉
  47. * @date 2022/2/17 14:29
  48. */
  49. public function signRule()
  50. {
  51. if ($this->request->isAjax()) {
  52. $post = $this->request->post();
  53. $post['integral_status'] = isset($post['integral_status']) && $post['integral_status'] == 'on' ? 1 : 0;
  54. $post['growth_status'] = isset($post['growth_status']) && $post['growth_status'] == 'on' ? 1 : 0;
  55. (new SignDailyValidate())->goCheck('sign', $post);
  56. $result = SignDailyLogic::setSignRule($post);
  57. if (true === $result) {
  58. return JsonServer::success('设置成功');
  59. }
  60. return JsonServer::error(SignDailyLogic::getError() ?: '操作失败');
  61. }
  62. }
  63. /**
  64. * @notes 添加连续签到奖励
  65. * @return \think\response\Json|\think\response\View
  66. * @author 段誉
  67. * @date 2022/2/17 14:29
  68. */
  69. public function add()
  70. {
  71. if ($this->request->isAjax()) {
  72. $post = $this->request->post();
  73. $post['integral_status'] = isset($post['integral_status']) && $post['integral_status'] == 'on' ? 1 : 0;
  74. $post['growth_status'] = isset($post['growth_status']) && $post['growth_status'] == 'on' ? 1 : 0;
  75. (new SignDailyValidate())->goCheck('add', $post);
  76. SignDailyLogic::add($post);
  77. return JsonServer::success('添加成功');
  78. }
  79. return view('sign_daily/add');
  80. }
  81. /**
  82. * @notes 编辑连续签到奖励
  83. * @param $id
  84. * @return \think\response\Json|\think\response\View
  85. * @author 段誉
  86. * @date 2022/2/17 14:30
  87. */
  88. public function edit($id)
  89. {
  90. if ($this->request->isAjax()) {
  91. $post = $this->request->post();
  92. $post['integral_status'] = isset($post['integral_status']) && $post['integral_status'] == 'on' ? 1 : 0;
  93. $post['growth_status'] = isset($post['growth_status']) && $post['growth_status'] == 'on' ? 1 : 0;
  94. (new SignDailyValidate())->goCheck('edit', $post);
  95. SignDailyLogic::edit($post);
  96. return JsonServer::success('修改成功');
  97. }
  98. return view('sign_daily/edit', ['info' => SignDailyLogic::getSignDaily($id)]);
  99. }
  100. /**
  101. * @notes 删除连续签到奖励
  102. * @return \think\response\Json
  103. * @author 段誉
  104. * @date 2022/2/17 14:30
  105. */
  106. public function del()
  107. {
  108. if ($this->request->isAjax()) {
  109. $id = $this->request->post('id');
  110. SignDailyLogic::del($id);
  111. return JsonServer::success('删除成功');
  112. }
  113. return JsonServer::error('请求异常');
  114. }
  115. }