Banner.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 山西牛酷信息科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com.cn
  8. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用。
  9. * 任何企业和个人不允许对程序代码以任何形式任何目的再发布。
  10. * =========================================================
  11. */
  12. namespace app\model\web;
  13. use think\facade\Cache;
  14. use app\model\BaseModel;
  15. /**
  16. * 广告管理
  17. * @author Administrator
  18. *
  19. */
  20. class Banner extends BaseModel
  21. {
  22. /**
  23. * 添加广告
  24. * @param array $data
  25. */
  26. public function addbanner($data)
  27. {
  28. $ap_id = model('banner')->add($data);
  29. Cache::tag("banner")->clear();
  30. return $this->success($ap_id);
  31. }
  32. /**
  33. * 修改广告
  34. * @param array $data
  35. */
  36. public function editbanner($data, $condition)
  37. {
  38. $res = model('banner')->update($data, $condition);
  39. Cache::tag("banner")->clear();
  40. return $this->success($res);
  41. }
  42. /**
  43. * 删除广告
  44. * @param array $condition
  45. */
  46. public function deletebanner($condition)
  47. {
  48. $res = model('banner')->delete($condition);
  49. Cache::tag("banner")->clear();
  50. return $this->success($res);
  51. }
  52. /**
  53. * 获取广告基础信息
  54. * @param int $ap_id
  55. * @return multitype:string mixed
  56. */
  57. public function getbannerInfo($ap_id)
  58. {
  59. $cache = Cache::get("banner_getbannerInfo_" . $ap_id);
  60. if (!empty($cache)) {
  61. return $this->success($cache);
  62. }
  63. $res = model('banner')->getInfo([ [ 'banner_id', '=', $ap_id ] ], 'banner_id, banner_title, ap_id, banner_url, banner_image, slide_sort, price, background');
  64. Cache::tag("banner")->set("banner_getbannerInfo_" . $ap_id, $res);
  65. return $this->success($res);
  66. }
  67. /**
  68. * 获取广告列表
  69. * @param array $condition
  70. * @param string $field
  71. * @param string $order
  72. * @param string $limit
  73. */
  74. public function getbannerList($condition = [], $field = 'id,show_image,link ', $order = 'id desc', $limit = null)
  75. {
  76. $data = json_encode([ $condition, $field, $order, $limit ]);
  77. $cache = Cache::get("banner_getbannerList_" . $data);
  78. dump($cache);
  79. if (!empty($cache)) {
  80. return $this->success($cache);
  81. }
  82. $list = model('banner')->getList($condition, $field, $order, '', '', '', $limit);
  83. Cache::tag("banner")->set("banner_getbannerList_" . $data, $list);
  84. return $this->success($list);
  85. }
  86. /**
  87. * 获取广告分页列表
  88. * @param array $condition
  89. * @param number $page
  90. * @param string $page_size
  91. * @param string $order
  92. * @param string $field
  93. */
  94. public function getbannerPageList($condition = [], $page = 1, $page_size = PAGE_LIST_ROWS, $order = 'a.banner_id desc', $field = 'a.banner_id, a.ap_id, a.banner_title, a.banner_url, a.banner_image, a.slide_sort, a.price, a.background, ap.ap_name')
  95. {
  96. $data = json_encode([ $condition, $field, $order, $page, $page_size ]);
  97. $cache = Cache::get("banner_getbannerPageList_" . $data);
  98. if (!empty($cache)) {
  99. return $this->success($cache);
  100. }
  101. $join = [
  102. [
  103. 'banner_position ap',
  104. 'a.ap_id = ap.ap_id',
  105. 'left'
  106. ]
  107. ];
  108. $list = model('banner')->pageList($condition, $field, $order, $page, $page_size, 'a', $join);
  109. Cache::tag("banner")->set("banner_getbannerPageList_" . $data, $list);
  110. return $this->success($list);
  111. }
  112. }