51 lines
1.4 KiB
PHP
51 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* ThinkShop商城系统 - 团队十年电商经验汇集巨献!
|
|
* =========================================================
|
|
* Copy right 2019-2029 成都云之牛科技有限公司, 保留所有权利。
|
|
* ----------------------------------------------
|
|
* 官方网址: https://www.cdcloudshop.com
|
|
* =========================================================
|
|
*/
|
|
|
|
namespace addon\bundling\api\controller;
|
|
|
|
use app\api\controller\BaseApi;
|
|
use addon\bundling\model\Bundling as BundlingModel;
|
|
|
|
/**
|
|
* 组合套餐
|
|
*/
|
|
class Bundling extends BaseApi
|
|
{
|
|
/**
|
|
* sku所关联有关组合套餐
|
|
* @return string
|
|
*/
|
|
public function lists()
|
|
{
|
|
$sku_id = isset($this->params[ 'sku_id' ]) ? $this->params[ 'sku_id' ] : 0;
|
|
if (empty($sku_id)) {
|
|
return $this->response($this->error('', 'REQUEST_SKU_ID'));
|
|
}
|
|
$bundling_model = new BundlingModel();
|
|
$info = $bundling_model->getBundlingGoodsNew($sku_id);
|
|
return $this->response($info);
|
|
}
|
|
|
|
/**
|
|
* 详情信息
|
|
*/
|
|
public function detail()
|
|
{
|
|
$bl_id = isset($this->params[ 'bl_id' ]) ? $this->params[ 'bl_id' ] : 0;
|
|
if (empty($bl_id)) {
|
|
return $this->response($this->error('', 'REQUEST_BL_ID'));
|
|
}
|
|
$bundling_model = new BundlingModel();
|
|
$info = $bundling_model->getBundlingDetail([ [ 'bl_id', '=', $bl_id ] ]);
|
|
return $this->response($info);
|
|
|
|
}
|
|
|
|
} |