// +---------------------------------------------------------------------- namespace app\controller\supplier\product; use app\controller\supplier\AuthController; use app\jobs\BatchHandleJob; use app\services\other\queue\QueueServices; use app\services\product\sku\StoreProductRuleServices; use think\facade\App; /** * 规则管理 * Class StoreProductRule * @package app\controller\supplier\product */ class StoreProductRule extends AuthController { public function __construct(App $app, StoreProductRuleServices $service) { parent::__construct($app); $this->services = $service; } /** * 规格列表 * @return mixed * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function index() { $where = $this->request->getMore([ ['rule_name', ''] ]); $where['type'] = 2; $where['relation_id'] = $this->supplierId; $list = $this->services->getList($where); return $this->success($list); } /** * 保存规格 * @param $id * @return mixed */ public function save($id) { $data = $this->request->postMore([ ['rule_name', ''], ['spec', []] ]); if (!$data['rule_name']) { return $this->fail('请输入分类名称'); } $data['type'] = 2; $data['relation_id'] = $this->supplierId; $this->services->save($id, $data, 2, (int)$this->supplierId); return $this->success('保存成功!'); } /** * 获取规格信息 * @param $id * @return mixed */ public function read($id) { $info = $this->services->getInfo((int)$id); return $this->success($info); } /** * 删除指定资源 * @param $id * @return mixed */ public function delete($id) { if (!$id) { return $this->fail('缺少ID'); } $info = $this->services->getInfo((int)$id); if (!$info) { return $this->fail('删除的数据不存在'); } $this->services->delete($id); return $this->success('删除成功!'); } }