You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?php namespace App\Http\Controllers\Api; use Illuminate\Support\Facades\Log; use Illuminate\Support\Facades\DB; use Illuminate\Http\Request; use App\Common\ReturnData; use App\Common\Helper; use App\Common\Token; use App\Http\Model\GoodsSearchword; use App\Http\Logic\GoodsSearchwordLogic;
class GoodsSearchwordController extends BaseController { public function __construct() { parent::__construct(); } public function getLogic() { return new GoodsSearchwordLogic(); } public function goodsSearchwordList(Request $request) { //参数
$limit = $request->input('limit', 10); $offset = $request->input('offset', 0); $where['status'] = 0; $res = $this->getLogic()->getList($where, [['click', 'desc'],['listorder', 'asc']], '*', $offset, $limit); /* if($res['count'] > 0) { foreach($res['list'] as $k=>$v) { } } */ return ReturnData::create(ReturnData::SUCCESS, $res); } public function goodsSearchwordDetail(Request $request) { //参数
if(!checkIsNumber($request->input('id',null))){return ReturnData::create(ReturnData::PARAMS_ERROR);} $id = $request->input('id'); $where['id'] = $id; $res = $this->getLogic()->getOne($where); if(!$res) { return ReturnData::create(ReturnData::RECORD_NOT_EXIST); } return ReturnData::create(ReturnData::SUCCESS,$res); } //添加
public function goodsSearchwordAdd(Request $request) { if(Helper::isPostRequest()) { return $this->getLogic()->add($_POST); } } //修改
public function goodsSearchwordUpdate(Request $request) { if(!checkIsNumber($request->input('id',null))){return ReturnData::create(ReturnData::PARAMS_ERROR);} $id = $request->input('id'); if(Helper::isPostRequest()) { unset($_POST['id']); $where['id'] = $id; return $this->getLogic()->edit($_POST,$where); } } //删除
public function goodsSearchwordDelete(Request $request) { if(!checkIsNumber($request->input('id',null))){return ReturnData::create(ReturnData::PARAMS_ERROR);} $id = $request->input('id'); if(Helper::isPostRequest()) { $where['id'] = $id; return $this->getLogic()->del($where); } } }
|