81 lines
2.0 KiB
PHP
81 lines
2.0 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace app\store\controller\user;
|
||
|
|
||
|
use app\store\controller\Controller;
|
||
|
use app\store\model\user\Grade as GradeModel;
|
||
|
|
||
|
/**
|
||
|
* 会员等级
|
||
|
* Class Grade
|
||
|
* @package app\store\controller\user
|
||
|
*/
|
||
|
class Grade extends Controller
|
||
|
{
|
||
|
/**
|
||
|
* 会员等级列表
|
||
|
* @return mixed
|
||
|
* @throws \think\exception\DbException
|
||
|
*/
|
||
|
public function index()
|
||
|
{
|
||
|
$model = new GradeModel;
|
||
|
$list = $model->getList();
|
||
|
return $this->fetch('index', compact('list'));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 添加等级
|
||
|
* @return array|bool|mixed
|
||
|
* @throws \Exception
|
||
|
*/
|
||
|
public function add()
|
||
|
{
|
||
|
$model = new GradeModel;
|
||
|
if (!$this->request->isAjax()) {
|
||
|
return $this->fetch('add');
|
||
|
}
|
||
|
// 新增记录
|
||
|
if ($model->add($this->postData('grade'))) {
|
||
|
return $this->renderSuccess('添加成功', url('user.grade/index'));
|
||
|
}
|
||
|
return $this->renderError($model->getError() ?: '添加失败');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 编辑会员等级
|
||
|
* @param $grade_id
|
||
|
* @return array|bool|mixed
|
||
|
* @throws \think\exception\DbException
|
||
|
*/
|
||
|
public function edit($grade_id)
|
||
|
{
|
||
|
// 会员等级详情
|
||
|
$model = GradeModel::detail($grade_id);
|
||
|
if (!$this->request->isAjax()) {
|
||
|
return $this->fetch('edit', compact('model'));
|
||
|
}
|
||
|
// 新增记录
|
||
|
if ($model->edit($this->postData('grade'))) {
|
||
|
return $this->renderSuccess('更新成功', url('user.grade/index'));
|
||
|
}
|
||
|
return $this->renderError($model->getError() ?: '更新失败');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 删除会员等级
|
||
|
* @param $grade_id
|
||
|
* @return array
|
||
|
* @throws \think\exception\DbException
|
||
|
*/
|
||
|
public function delete($grade_id)
|
||
|
{
|
||
|
// 会员等级详情
|
||
|
$model = GradeModel::detail($grade_id);
|
||
|
if (!$model->setDelete()) {
|
||
|
return $this->renderError($model->getError() ?: '删除失败');
|
||
|
}
|
||
|
return $this->renderSuccess('删除成功');
|
||
|
}
|
||
|
|
||
|
}
|