This commit is contained in:
wangchen147
2023-11-30 15:31:08 +08:00
parent f2765e9a1f
commit a95521f6af
32 changed files with 668 additions and 156 deletions

View File

@@ -172,6 +172,18 @@ class Config extends BaseAdminController
return success();
}
/**
* 获取手机端首页列表
*/
public function getWapIndexList()
{
$data = $this->request->params([
[ 'title', '' ],
[ 'key', '' ] // 多个查询,逗号隔开
]);
return success(( new ConfigService() )->getWapIndexList($data));
}
/**
* 设置快捷菜单
*/