Bundling.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 山西牛酷信息科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com.cn
  8. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用。
  9. * 任何企业和个人不允许对程序代码以任何形式任何目的再发布。
  10. * =========================================================
  11. */
  12. namespace addon\bundling\api\controller;
  13. use app\api\controller\BaseApi;
  14. use addon\bundling\model\Bundling as BundlingModel;
  15. /**
  16. * 组合套餐
  17. */
  18. class Bundling extends BaseApi
  19. {
  20. /**
  21. * sku所关联有关组合套餐
  22. * @return string
  23. */
  24. public function lists()
  25. {
  26. $sku_id = isset($this->params['sku_id']) ? $this->params['sku_id'] : 0;
  27. if (empty($sku_id)) {
  28. return $this->response($this->error('', 'REQUEST_SKU_ID'));
  29. }
  30. $bundling_model = new BundlingModel();
  31. $info = $bundling_model->getBundlingGoods($sku_id);
  32. return $this->response($info);
  33. }
  34. /**
  35. * 详情信息
  36. */
  37. public function detail()
  38. {
  39. $bl_id = isset($this->params['bl_id']) ? $this->params['bl_id'] : 0;
  40. if (empty($bl_id)) {
  41. return $this->response($this->error('', 'REQUEST_BL_ID'));
  42. }
  43. $bundling_model = new BundlingModel();
  44. $info = $bundling_model->getBundlingDetail([ [ 'bl_id', '=', $bl_id ] ]);
  45. return $this->response($info);
  46. }
  47. }