140 lines
4.4 KiB
PHP
Executable File
140 lines
4.4 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* 商品控制器
|
|
*/
|
|
|
|
namespace app\admin\controller;
|
|
|
|
use think\Request;
|
|
use app\common\model\Goods;
|
|
use app\common\model\GoodsCategory;
|
|
use app\common\model\Brand;
|
|
use app\common\model\GoodsAttrCategory;
|
|
|
|
use app\common\validate\GoodsValidate;
|
|
|
|
class GoodsController extends Controller
|
|
{
|
|
|
|
//列表
|
|
public function index(Request $request, Goods $model)
|
|
{
|
|
$param = $request->param();
|
|
$model = $model->with('goods_category,brand')->scope('where', $param);
|
|
|
|
$data = $model->paginate($this->admin['per_page'], false, ['query' => $request->get()]);
|
|
//关键词,排序等赋值
|
|
$this->assign($request->get());
|
|
|
|
$this->assign([
|
|
'data' => $data,
|
|
'page' => $data->render(),
|
|
'total' => $data->total(),
|
|
]);
|
|
return $this->fetch();
|
|
}
|
|
|
|
//添加
|
|
public function add(Request $request, Goods $model, GoodsValidate $validate)
|
|
{
|
|
if ($request->isPost()) {
|
|
$param = $request->param();
|
|
$validate_result = $validate->scene('add')->check($param);
|
|
if (!$validate_result) {
|
|
return error($validate->getError());
|
|
}
|
|
$param['attr'] = $request->param(false)['attr'];
|
|
|
|
$param['detail'] = $request->param(false)['detail'];
|
|
|
|
//处理图片上传
|
|
$attachment_img = new \app\common\model\Attachment;
|
|
$file_img = $attachment_img->upload('img');
|
|
if ($file_img) {
|
|
$param['img'] = $file_img->url;
|
|
} else {
|
|
return error($attachment_img->getError());
|
|
}
|
|
|
|
$result = $model::create($param);
|
|
|
|
$url = URL_BACK;
|
|
if (isset($param['_create']) && $param['_create'] == 1) {
|
|
$url = URL_RELOAD;
|
|
}
|
|
|
|
return $result ? success('添加成功', $url) : error();
|
|
}
|
|
|
|
$this->assign([
|
|
'goods_category_list' => $this->getSelectList(new GoodsCategory),
|
|
'brand_list' => Brand::all(),
|
|
'imgurl_list'=>array(),
|
|
]);
|
|
return $this->fetch();
|
|
}
|
|
|
|
//修改
|
|
public function edit($id, Request $request, Goods $model, GoodsValidate $validate)
|
|
{
|
|
|
|
$data = $model::get($id);
|
|
if ($request->isPost()) {
|
|
$param = $request->param();
|
|
$validate_result = $validate->scene('edit')->check($param);
|
|
if (!$validate_result) {
|
|
return error($validate->getError());
|
|
}
|
|
$param['attr'] = $request->param(false)['attr'];
|
|
|
|
$param['detail'] = $request->param(false)['detail'];
|
|
|
|
//处理图片上传
|
|
if (!empty($_FILES['img']['name'])) {
|
|
$attachment_img = new \app\common\model\Attachment;
|
|
$file_img = $attachment_img->upload('img');
|
|
if ($file_img) {
|
|
$param['img'] = $file_img->url;
|
|
}
|
|
}
|
|
|
|
$result = $data->save($param);
|
|
return $result ? success() : error();
|
|
}
|
|
|
|
$this->assign([
|
|
'data' => $data,
|
|
'goods_category_list' => $this->getSelectList(new GoodsCategory, $data->goods_category_id),
|
|
'brand_list' => Brand::all(),
|
|
'goodsattrcategory_list' => GoodsAttrCategory::all(),
|
|
'imgurl_list'=>array(),
|
|
]);
|
|
return $this->fetch('add');
|
|
|
|
}
|
|
|
|
//删除
|
|
public function del($id, Goods $model)
|
|
{
|
|
if (count($model->noDeletionId) > 0) {
|
|
if (is_array($id)) {
|
|
if (array_intersect($model->noDeletionId, $id)) {
|
|
return error('ID为' . implode(',', $model->noDeletionId) . '的数据无法删除');
|
|
}
|
|
} else if (in_array($id, $model->noDeletionId)) {
|
|
return error('ID为' . $id . '的数据无法删除');
|
|
}
|
|
}
|
|
|
|
if ($model->softDelete) {
|
|
$result = $model->whereIn('id', $id)->useSoftDelete('delete_time', time())->delete();
|
|
} else {
|
|
$result = $model->whereIn('id', $id)->delete();
|
|
}
|
|
|
|
return $result ? success('操作成功', URL_RELOAD) : error();
|
|
}
|
|
|
|
|
|
}
|