123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- <?php
- /**
- * 小梦科技资源nanodreamtech.com
- *
- * ==========================================================================
- * @link https://www.nanodreamtech.com/
- * @copyright Copyright (c) 2015 liofis.com.
- * @license https://www.nanodreamtech.com/license.html License
- * ==========================================================================
- *
- * @author fish
- *
- */
- namespace Seller\Controller;
- class GeneralmallController extends CommonController
- {
- protected function _initialize()
- {
- parent::_initialize();
- }
- public function slider()
- {
- $condition = ' type="slider" ';
- $pindex = I('request.page', 1);
- $psize = 20;
- $keyword = I('request.keyword');
- $this->keyword = $keyword;
- if (!empty($keyword)) {
- $condition .= ' and advname like ' . '"%' . $keyword . '%"';
- }
- $enabled = I('request.enabled');
- if (!empty($enabled) && $enabled >= 0) {
- $condition .= ' and enabled = ' . $enabled;
- } else {
- $enabled = -1;
- }
- $this->enabled = $enabled;
- $list = M()->query('SELECT id,advname,thumb,link,type,displayorder,enabled FROM ' .
- C('DB_PREFIX') . "lionfish_comshop_generalmall_adv \r\n
- WHERE " . $condition . ' order by displayorder desc, id desc limit ' . (($pindex - 1) * $psize) . ',' . $psize);
- $total = M('lionfish_comshop_generalmall_adv')->where($condition)->count();
- $pager = pagination2($total, $pindex, $psize);
- $this->list = $list;
- $this->pager = $pager;
- $this->display();
- }
- public function addslider()
- {
- $id = I('request.id');
- if (!empty($id)) {
- $item = M('lionfish_comshop_generalmall_adv')->where(array('id' => $id))->find();
- $this->item = $item;
- }
- if (IS_POST) {
- $data = I('request.data');
- D('Seller/Generalmall')->update($data);
- show_json(1, array('url' => $_SERVER['HTTP_REFERER']));
- }
- $this->display();
- }
- public function changeslider()
- {
- $id = I('request.id');
- //ids
- if (empty($id)) {
- $ids = I('request.ids');
- $id = ((is_array($ids) ? implode(',', $ids) : 0));
- }
- if (empty($id)) {
- show_json(0, array('message' => '参数错误'));
- }
- $type = I('request.type');
- $value = I('request.value');
- if (!(in_array($type, array('enabled', 'displayorder')))) {
- show_json(0, array('message' => '参数错误'));
- }
- $items = M('lionfish_comshop_generalmall_adv')->where(array('id' => array('in', $id)))->select();
- foreach ($items as $item) {
- M('lionfish_comshop_generalmall_adv')->where(array('id' => $item['id']))->save(array($type => $value));
- }
- show_json(1, array('url' => $_SERVER['HTTP_REFERER']));
- }
- public function delete()
- {
- $id = I('request.id');
- //ids
- if (empty($id)) {
- $ids = I('request.ids');
- $id = ((is_array($ids) ? implode(',', $ids) : 0));
- }
- if (empty($id)) {
- show_json(0, array('message' => '参数错误'));
- }
- $items = M('lionfish_comshop_generalmall_adv')->where(array('id' => array('in', $id)))->select();
- foreach ($items as $item) {
- M('lionfish_comshop_generalmall_adv')->where(array('id' => $item['id']))->delete();
- }
- show_json(1, array('url' => $_SERVER['HTTP_REFERER']));
- }
- public function navigat()
- {
- $_GPC = I('request.');
- $pindex = max(1, intval($_GPC['page']));
- $psize = 20;
- $condition = "";
- if (!empty($_GPC['keyword'])) {
- $condition .= ' and navname like "%' . trim($_GPC['keyword']) . '%"';
- }
- if (isset($_GPC['enabled']) && $_GPC['enabled'] >= 0) {
- $condition .= ' and enabled = ' . $_GPC['enabled'];
- } else {
- $_GPC['enabled'] = -1;
- }
- $list = M()->query('SELECT * FROM ' . C('DB_PREFIX') . "lionfish_comshop_generalmall_navigat
- WHERE 1 " . $condition . ' order by displayorder desc, id desc limit ' . (($pindex - 1) * $psize) . ',' . $psize);
- $total = M('lionfish_comshop_generalmall_navigat')->where('1 ' . $condition)->count();
- $pager = pagination2($total, $pindex, $psize);
- $this->gpc = $_GPC;
- $this->list = $list;
- $this->display();
- }
- public function addnavigat()
- {
- $_GPC = I('request.');
- $id = intval($_GPC['id']);
- $category = D('Seller/GoodsCategory')->getFullCategory(false, true);
- $this->category = $category;
- if (!empty($id)) {
- $item = M('lionfish_comshop_generalmall_navigat')->where(array('id' => $id))->find();
- $this->item = $item;
- }
- if (IS_POST) {
- $data = $_GPC['data'];
- if ($data['type'] == 3 || $data['type'] == 4) {
- $data['link'] = $data['cid'];
- }
- D('Seller/Generalmall')->navigat_update($data);
- show_json(1, array('url' => $_SERVER['HTTP_REFERER']));
- }
- $this->display();
- }
- public function changenavigat()
- {
- $_GPC = I('request.');
- $id = intval($_GPC['id']);
- //ids
- if (empty($id)) {
- $id = ((is_array($_GPC['ids']) ? implode(',', $_GPC['ids']) : 0));
- }
- if (empty($id)) {
- show_json(0, array('message' => '参数错误'));
- }
- $type = trim($_GPC['type']);
- $value = trim($_GPC['value']);
- if (!(in_array($type, array('enabled', 'displayorder')))) {
- show_json(0, array('message' => '参数错误'));
- }
- $items = M('lionfish_comshop_generalmall_navigat')->field('id')->where('id in( ' . $id . ' ) ')->select();
- foreach ($items as $item) {
- M('lionfish_comshop_generalmall_navigat')->where(array('id' => $item['id']))->save(array($type => $value));
- }
- show_json(1, array('url' => $_SERVER['HTTP_REFERER']));
- }
- public function deletenavigat()
- {
- $_GPC = I('request.');
- $id = intval($_GPC['id']);
- //ids
- if (empty($id)) {
- $id = ((is_array($_GPC['ids']) ? implode(',', $_GPC['ids']) : 0));
- }
- if (empty($id)) {
- show_json(0, array('message' => '参数错误'));
- }
- $items = M('lionfish_comshop_generalmall_navigat')->field('id')->where('id in( ' . $id . ' )')->select();
- foreach ($items as $item) {
- M('lionfish_comshop_generalmall_navigat')->where(array('id' => $item['id']))->delete();
- }
- show_json(1, array('url' => $_SERVER['HTTP_REFERER']));
- }
- }
|