截流自动化的商城平台
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.

Footprint.php 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\logic\FootprintLogic;
  4. use app\common\basics\AdminBase;
  5. use app\common\server\ConfigServer;
  6. use app\common\server\JsonServer;
  7. use think\facade\View;
  8. class Footprint extends AdminBase
  9. {
  10. /**
  11. * @Notes: 足迹气泡配置页
  12. * @Author: 张无忌
  13. * @return \think\response\View
  14. */
  15. public function index()
  16. {
  17. $config['footprint_status'] = ConfigServer::get('footprint','footprint_status',0);
  18. $config['footprint_duration'] = ConfigServer::get('footprint','footprint_duration',60);
  19. View::assign('config', $config);
  20. View::assign('footprint', FootprintLogic::lists());
  21. return view();
  22. }
  23. /**
  24. * @Notes: 编辑足迹气泡
  25. * @Author: 张无忌
  26. */
  27. public function edit()
  28. {
  29. if ($this->request->isAjax()) {
  30. $post = $this->request->post();
  31. $result = FootprintLogic::edit($post);
  32. if ($result === false) {
  33. $message = FootprintLogic::getError() ?: '编辑失败';
  34. return JsonServer::error($message);
  35. }
  36. return JsonServer::success('编辑成功');
  37. }
  38. $id = $this->request->get('id');
  39. View::assign('detail', FootprintLogic::detail($id));
  40. return view();
  41. }
  42. /**
  43. * @Notes: 设置足迹
  44. * @Author: 张无忌
  45. */
  46. public function set()
  47. {
  48. if ($this->request->isAjax()) {
  49. $post = $this->request->post();
  50. $result = FootprintLogic::set($post);
  51. if ($result === false) {
  52. $message = FootprintLogic::getError() ?: '设置失败';
  53. return JsonServer::error($message);
  54. }
  55. return JsonServer::success('设置成功');
  56. }
  57. return JsonServer::error('请求异常');
  58. }
  59. }