dggzichahu/application/admin/controller/Store.php

99 lines
2.3 KiB
PHP
Executable File

<?php
// +----------------------------------------------------------------------
// | 宏驰云科技开发团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | Author: HcyShop-kiki
// +----------------------------------------------------------------------
namespace app\admin\controller;
use app\admin\logic\{
StoreLogic
};
class Store extends AdminBase
{
/**
* 门店列表
* @return mixed
*/
public function lists()
{
if ($this->request->isAjax()) {
$get = $this->request->get();
$this->_success('', StoreLogic::lists($get));
}
return $this->fetch();
}
/**
* 添加文章
*/
public function add()
{
if ($this->request->isAjax()) {
$post = $this->request->post();
$post['del'] = 0;
$result = $this->validate($post, 'app\admin\validate\Store.add');
if ($result === true) {
StoreLogic::addStore($post);
$this->_success('添加成功!');
}
$this->_error($result);
}
return $this->fetch();
}
/**
* 编辑文章
*/
public function edit($id)
{
if ($this->request->isAjax()) {
$post = $this->request->post();
$post['del'] = 0;
$result = $this->validate($post, 'app\admin\validate\Store.edit');
if ($result === true) {
StoreLogic::editStore($post);
$this->_success('编辑成功!');
}
$this->_error($result);
}
$article = StoreLogic::getStore($id);
$this->assign('article', $article);
return $this->fetch();
}
/**
* 删除文章
*/
public function del($id)
{
if ($this->request->isAjax()) {
$result = $this->validate(['id' => $id], 'app\admin\validate\Store.del');
if ($result === true) {
StoreLogic::delStore($id);
$this->_success('删除成功');
}
$this->_error($result);
}
}
/**
* 修改状态
*/
public function switchStatus()
{
$post = $this->request->post();
StoreLogic::switchStatus($post);
$this->_success('修改成功');
}
}