123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <?php
- namespace app\store\controller;
- use library\Controller;
- use think\Db;
- class Banner extends Controller
- {
-
- protected $table = 'StoreBanner';
-
- public function index()
- {
- $this->title = '轮播图列表';
- $query = $this->_query($this->table)->where('is_deleted',0);
- $query->like('name');
- $query->order(' sort desc , id desc')->page();
- }
-
- protected function _index_page_filter(&$data)
- {
- }
-
- public function add()
- {
- $this->title = '添加轮播图';
- $this->_form($this->table, 'form');
- }
-
- public function edit()
- {
- $this->title = '编辑轮播图';
- $this->_form($this->table, 'form');
- }
-
- public function forbidden()
- {
- $this->_save($this->table, ['status' => '0']);
- }
-
- public function enable()
- {
- $this->_save($this->table, ['status' => 1]);
- }
-
- public function del()
- {
- $this->_save($this->table, ['is_deleted' => 1]);
- }
-
- protected function _form_filter(&$data)
- {
- $data['create_at'] = date('Y-m-d H:i:s');
- }
- }
|