mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 05:52:43 +08:00
136 lines
3.7 KiB
PHP
136 lines
3.7 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | framework
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://framework.thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | github开源项目:https://github.com/zoujingli/ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\store\controller;
|
||
|
||
use library\Controller;
|
||
use think\Db;
|
||
|
||
/**
|
||
* 页面管理
|
||
* Class Page
|
||
* @package app\store\controller
|
||
*/
|
||
class Page extends Controller
|
||
{
|
||
/**
|
||
* 绑定数据表
|
||
* @var string
|
||
*/
|
||
protected $table = 'StorePage';
|
||
|
||
/**
|
||
* 页面管理
|
||
* @throws \think\Exception
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
* @throws \think\exception\DbException
|
||
* @throws \think\exception\PDOException
|
||
*/
|
||
public function index()
|
||
{
|
||
$this->title = '商城页面管理';
|
||
$this->_query($this->table)->order('sort asc,id desc')->page();
|
||
}
|
||
|
||
/**
|
||
* 数据列表处理
|
||
* @param array $data
|
||
*/
|
||
protected function _page_filter(&$data)
|
||
{
|
||
foreach ($data as &$vo) {
|
||
$vo['one'] = json_decode($vo['one'], true);
|
||
$vo['mul'] = json_decode($vo['mul'], true);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 添加页面
|
||
*/
|
||
public function add()
|
||
{
|
||
$this->title = '添加商城页面';
|
||
$this->_form($this->table, 'form');
|
||
}
|
||
|
||
/**
|
||
* 编辑页面
|
||
*/
|
||
public function edit()
|
||
{
|
||
$this->title = '编辑商城页面';
|
||
$this->_form($this->table, 'form');
|
||
}
|
||
|
||
/**
|
||
* 表单数据处理
|
||
* @param array $post
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
* @throws \think\exception\DbException
|
||
*/
|
||
protected function _form_filter(&$post = [])
|
||
{
|
||
if ($this->request->isGet()) {
|
||
$where = ['is_deleted' => '0', 'status' => '1'];
|
||
$this->goodsList = Db::name('StoreGoods')->where($where)->order('sort asc,id desc')->select();
|
||
$maps = ['普通商品', '临时礼包', '会员礼包'];
|
||
foreach ($this->goodsList as &$vo) {
|
||
$vo['title'] = (isset($maps[$vo['vip_mod']]) ? "【{$maps[$vo['vip_mod']]}】" : '【类型异常】') . $vo['title'];
|
||
}
|
||
if (isset($post['one'])) $post['one'] = json_decode($post['one'], true);
|
||
if (isset($post['mul'])) $post['mul'] = json_decode($post['mul'], true);
|
||
} else foreach (['one', 'mul'] as $type) {
|
||
if (empty($post[$type])) $post[$type] = [];
|
||
$post[$type] = json_encode($post[$type], JSON_UNESCAPED_UNICODE);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 表单数据结果处理
|
||
* @param boolean $result
|
||
*/
|
||
protected function _form_result($result)
|
||
{
|
||
if ($result) {
|
||
$this->success('页面更新成功!', url('@admin') . '#' . url('@store/page/index'));
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 禁用页面
|
||
*/
|
||
public function forbid()
|
||
{
|
||
$this->_save($this->table, ['status' => '0']);
|
||
}
|
||
|
||
/**
|
||
* 启用页面
|
||
*/
|
||
public function resume()
|
||
{
|
||
$this->_save($this->table, ['status' => '1']);
|
||
}
|
||
|
||
/**
|
||
* 删除页面
|
||
*/
|
||
public function del()
|
||
{
|
||
$this->_delete($this->table);
|
||
}
|
||
|
||
} |