54 lines
1.5 KiB
PHP
Executable File
54 lines
1.5 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Niushop商城系统 - 团队十年电商经验汇集巨献!
|
|
* =========================================================
|
|
* Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
|
|
* ----------------------------------------------
|
|
* 官方网址: https://www.niushop.com
|
|
* =========================================================
|
|
*/
|
|
|
|
namespace addon\bundling\api\controller;
|
|
|
|
use app\api\controller\BaseApi;
|
|
use addon\bundling\model\Bundling as BundlingModel;
|
|
|
|
/**
|
|
* 组合套餐
|
|
*/
|
|
class Bundling extends BaseApi
|
|
{
|
|
/**
|
|
* sku所关联有关组合套餐
|
|
* @param int $id
|
|
* @return false|string
|
|
*/
|
|
public function lists($id = 0)
|
|
{
|
|
$sku_id = $this->params['sku_id'] ?? 0;
|
|
if (!empty($id)) {
|
|
$sku_id = $id;
|
|
}
|
|
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 = $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);
|
|
}
|
|
|
|
} |