StoreProductReply.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\controller\merchant\store;
  12. use app\common\repositories\store\product\ProductReplyRepository;
  13. use crmeb\basic\BaseController;
  14. use think\App;
  15. class StoreProductReply extends BaseController
  16. {
  17. protected $repository;
  18. public function __construct(App $app, ProductReplyRepository $replyRepository)
  19. {
  20. parent::__construct($app);
  21. $this->repository = $replyRepository;
  22. }
  23. public function changeSort($id)
  24. {
  25. $merId = $this->request->merId();
  26. if (!$this->repository->merExists($merId, $id))
  27. return app('json')->fail('数据不存在');
  28. $sort = (int)$this->request->param('sort');
  29. $this->repository->update($id, compact('sort'));
  30. return app('json')->success('修改成功');
  31. }
  32. }