| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- 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('删除成功');
- }
- }
|