19 lines
413 B
PHP
Executable File
19 lines
413 B
PHP
Executable File
<?php
|
|
namespace app\shopapi\controller;
|
|
use app\shopapi\logic\IndexLogic;
|
|
|
|
class IndexController extends BaseShopController
|
|
{
|
|
|
|
/**
|
|
* @notes 首页商家数据
|
|
* @return \think\response\Json
|
|
* @author cjhao
|
|
* @date 2024/11/12 17:55
|
|
*/
|
|
public function shopData()
|
|
{
|
|
$result = (new IndexLogic())->shopData($this->shopId);
|
|
return $this->success('',$result);
|
|
}
|
|
} |