feat(IndexController): 添加系统商店功能

This commit is contained in:
mkm 2024-06-18 18:17:39 +08:00
parent 17706c1f98
commit 3a789a3726

View File

@ -7,6 +7,7 @@ use app\admin\validate\tools\GenerateTableValidate;
use app\admin\logic\tools\GeneratorLogic;
use app\common\logic\store_order\StoreOrderLogic;
use app\common\model\store_branch_product\StoreBranchProduct;
use app\common\model\system_store\SystemStore;
use app\common\service\pay\PayService;
use app\common\service\wechat\WechatTemplate;
use Exception;
@ -22,7 +23,7 @@ use Webman\RedisQueue\Redis;
class IndexController extends BaseApiController
{
public $notNeedLogin = ['index', 'app_update', 'express_list', 'province', 'city', 'area', 'street','village','brigade','config'];
public $notNeedLogin = ['index', 'app_update', 'express_list', 'province', 'city', 'area', 'street', 'village', 'brigade', 'config'];
public function index()
{
@ -173,7 +174,7 @@ class IndexController extends BaseApiController
$list = Db::name('geo_village')->where('street_code', $area_code)->select()?->toArray();
return $this->success('ok', $list);
}
/**
/**
* @notes 获取队列表
*/
public function brigade()
@ -182,14 +183,16 @@ class IndexController extends BaseApiController
return $this->success('ok', $list);
}
/**
/**
* @notes 获取队列表
*/
public function config()
{
$list=[
'id'=>5,
'store_name'=>'测试',
$store_id = getenv('STORE_ID') ?? 1;
$find = SystemStore::where('id', $store_id)->find();
$list = [
'id' => $find['id'],
'store_name' => $find['name'],
];
return $this->success('ok', $list);
}