123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <?php
- /**
- * Niushop商城系统 - 团队十年电商经验汇集巨献!
- * =========================================================
- * Copy right 2019-2029 山西牛酷信息科技有限公司, 保留所有权利。
- * ----------------------------------------------
- * 官方网址: https://www.niushop.com.cn
- * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用。
- * 任何企业和个人不允许对程序代码以任何形式任何目的再发布。
- * =========================================================
- */
- namespace app\model\web;
- use think\facade\Cache;
- use app\model\BaseModel;
- /**
- * 广告管理
- * @author Administrator
- *
- */
- class Banner extends BaseModel
- {
- /**
- * 添加广告
- * @param array $data
- */
- public function addbanner($data)
- {
- $ap_id = model('banner')->add($data);
- Cache::tag("banner")->clear();
- return $this->success($ap_id);
- }
-
- /**
- * 修改广告
- * @param array $data
- */
- public function editbanner($data, $condition)
- {
- $res = model('banner')->update($data, $condition);
- Cache::tag("banner")->clear();
- return $this->success($res);
- }
-
- /**
- * 删除广告
- * @param array $condition
- */
- public function deletebanner($condition)
- {
- $res = model('banner')->delete($condition);
- Cache::tag("banner")->clear();
- return $this->success($res);
- }
-
- /**
- * 获取广告基础信息
- * @param int $ap_id
- * @return multitype:string mixed
- */
- public function getbannerInfo($ap_id)
- {
- $cache = Cache::get("banner_getbannerInfo_" . $ap_id);
- if (!empty($cache)) {
- return $this->success($cache);
- }
- $res = model('banner')->getInfo([ [ 'banner_id', '=', $ap_id ] ], 'banner_id, banner_title, ap_id, banner_url, banner_image, slide_sort, price, background');
- Cache::tag("banner")->set("banner_getbannerInfo_" . $ap_id, $res);
- return $this->success($res);
- }
-
- /**
- * 获取广告列表
- * @param array $condition
- * @param string $field
- * @param string $order
- * @param string $limit
- */
- public function getbannerList($condition = [], $field = 'id,show_image,link ', $order = 'id desc', $limit = null)
- {
- $data = json_encode([ $condition, $field, $order, $limit ]);
- $cache = Cache::get("banner_getbannerList_" . $data);
- dump($cache);
- if (!empty($cache)) {
- return $this->success($cache);
- }
- $list = model('banner')->getList($condition, $field, $order, '', '', '', $limit);
- Cache::tag("banner")->set("banner_getbannerList_" . $data, $list);
-
- return $this->success($list);
- }
-
- /**
- * 获取广告分页列表
- * @param array $condition
- * @param number $page
- * @param string $page_size
- * @param string $order
- * @param string $field
- */
- 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')
- {
- $data = json_encode([ $condition, $field, $order, $page, $page_size ]);
- $cache = Cache::get("banner_getbannerPageList_" . $data);
- if (!empty($cache)) {
- return $this->success($cache);
- }
- $join = [
- [
- 'banner_position ap',
- 'a.ap_id = ap.ap_id',
- 'left'
- ]
- ];
-
- $list = model('banner')->pageList($condition, $field, $order, $page, $page_size, 'a', $join);
- Cache::tag("banner")->set("banner_getbannerPageList_" . $data, $list);
- return $this->success($list);
- }
-
- }
|