pozhen_web_api/app/api/controller/Banners/Banner.php
2024-09-16 17:17:26 +08:00

51 lines
1.4 KiB
PHP

<?php
namespace app\api\controller\Banners;
use app\BaseController;
use app\common\model\Banners\Banner as ModelBanner;
use app\Request;
use think\Validate;
use think\exception\ValidateException;
use think\facade\Filesystem;
use app\common\arw\adjfut\src\Excel;
use app\common\arw\adjfut\src\UploadFile;
use think\facade\Db;
use app\common\exception\Tool;
use think\facade\Env;
class Banner extends BaseController
{
/**
* 获取轮播图列表
*/
public function getBannerList(Request $request): array
{
$params = $request->param();
$con = [];
$this->validate($params, ['banner_location|轮播图位置' => 'require', 'locale' => 'require']);
$con = Tool::getOptionalQuery(
['c.i18n_lang_type_code', '=', 'locale'] //i18n,
);
$query = ModelBanner::where($con)
->alias('a')
->leftjoin('i18n_lang_type c', 'a.i18n_lang_type_guid = c.i18n_lang_type_guid') //i18n
->field([
'a.banner_img',
'a.banner_location',
'a.banner_link',
'c.i18n_lang_type_code',
'a.i18n_lang_type_guid',
])
->where('a.banner_location', $params['banner_location'])
->order('a.banner_order', 'asc')
->select();
return msg(0, "获取轮播图列表成功!", [
'data' => $query,
'count' => count($query)
]);
}
}