123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\adminapi\controller\v1\product;
- use app\adminapi\controller\AuthController;
- use app\services\product\sku\StoreProductRuleServices;
- use think\facade\App;
- /**
- * 规则管理
- * Class StoreProductRule
- * @package app\adminapi\controller\v1\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', '']
- ]);
- $list = $this->services->getList($where);
- return app('json')->success($list);
- }
- /**
- * 保存规格
- * @param $id
- * @return mixed
- */
- public function save($id)
- {
- $data = $this->request->postMore([
- ['rule_name', ''],
- ['spec', []]
- ]);
- $this->services->save($id, $data);
- return app('json')->success(100000);
- }
- /**
- * 获取规格信息
- * @param $id
- * @return mixed
- */
- public function read($id)
- {
- $info = $this->services->getInfo($id);
- return app('json')->success($info);
- }
- /**
- * 删除指定资源
- *
- * @param int $id
- * @return \think\Response
- */
- public function delete()
- {
- [$ids] = $this->request->postMore([
- ['ids', '']
- ], true);
- $this->services->del((string)$ids);
- return app('json')->success(100002);
- }
- }
|