| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
- namespace app\store\controller\goods;
- use app\store\controller\Controller;
- use app\store\model\Category as CategoryModel;
- /**
- * 商品分类
- * Class Category
- * @package app\store\controller\goods
- */
- class Category extends Controller
- {
- /**
- * 商品分类列表
- * @return mixed
- */
- public function index()
- {
- $model = new CategoryModel;
- $list = $model->getCacheTree();
- return $this->fetch('index', compact('list'));
- }
- /**
- * 删除商品分类
- * @param $category_id
- * @return array|bool
- * @throws \think\Exception
- * @throws \think\exception\DbException
- */
- public function delete($category_id)
- {
- $model = CategoryModel::get($category_id);
- if (!$model->remove($category_id)) {
- return $this->renderError($model->getError() ?: '删除失败');
- }
- return $this->renderSuccess('删除成功');
- }
- /**
- * 添加商品分类
- * @return array|mixed
- */
- public function add()
- {
- $model = new CategoryModel;
- if (!$this->request->isAjax()) {
- // 获取所有地区
- $list = $model->getCacheTree();
- return $this->fetch('add', compact('list'));
- }
- // 新增记录
- if ($model->add($this->postData('category'))) {
- return $this->renderSuccess('添加成功', url('goods.category/index'));
- }
- return $this->renderError($model->getError() ?: '添加失败');
- }
- /**
- * 编辑商品分类
- * @param $category_id
- * @return array|mixed
- * @throws \think\exception\DbException
- */
- public function edit($category_id)
- {
- // 模板详情
- $model = CategoryModel::get($category_id, ['image']);
- if (!$this->request->isAjax()) {
- // 获取所有地区
- $list = $model->getCacheTree();
- return $this->fetch('edit', compact('model', 'list'));
- }
- // 更新记录
- if ($model->edit($this->postData('category'))) {
- return $this->renderSuccess('更新成功', url('goods.category/index'));
- }
- return $this->renderError($model->getError() ?: '更新失败');
- }
- }
|