截流自动化的商城平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

FootprintLogic.php 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. namespace app\admin\logic;
  3. use app\common\basics\Logic;
  4. use app\common\model\Footprint;
  5. use app\common\server\ConfigServer;
  6. use Exception;
  7. class FootprintLogic extends Logic
  8. {
  9. /**
  10. * @Notes: 气泡场景列表
  11. * @Author: 张无忌
  12. * @return array
  13. */
  14. public static function lists()
  15. {
  16. try {
  17. $footprintModel = new Footprint();
  18. return $footprintModel->select()->toArray();
  19. } catch (Exception $e) {
  20. return ['error'=>$e->getMessage()];
  21. }
  22. }
  23. /**
  24. * @Notes: 气泡详细
  25. * @Author: 张无忌
  26. * @param $id
  27. * @return array
  28. */
  29. public static function detail($id)
  30. {
  31. $footprintModel = new Footprint();
  32. return $footprintModel->findOrEmpty((int)$id)->toArray();
  33. }
  34. /**
  35. * @Notes: 编辑足迹气泡
  36. * @Author: 张无忌
  37. * @param $post
  38. * @return bool
  39. */
  40. public static function edit($post)
  41. {
  42. try {
  43. $footprintModel = new Footprint();
  44. $footprintModel->where(['id' => (int)$post['id']])
  45. ->update(['status' => $post['status']]);
  46. return true;
  47. } catch (Exception $e) {
  48. static::$error = $e->getMessage();
  49. return false;
  50. }
  51. }
  52. /**
  53. * @Notes: 足迹设置
  54. * @Author: 张无忌
  55. * @param $post
  56. * @return bool
  57. */
  58. public static function set($post)
  59. {
  60. try {
  61. ConfigServer::set('footprint', 'footprint_duration', $post['duration']);
  62. ConfigServer::set('footprint', 'footprint_status', $post['status']);
  63. return true;
  64. } catch (Exception $e) {
  65. return false;
  66. }
  67. }
  68. }