You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace app\api\controller;
|
|
|
|
|
|
|
|
use app\common\model\Banner;
|
|
|
|
use app\common\model\UploadFile;
|
|
|
|
use think\db\exception\DataNotFoundException;
|
|
|
|
use think\db\exception\DbException;
|
|
|
|
use think\db\exception\ModelNotFoundException;
|
|
|
|
use think\response\Json;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 默认控制器
|
|
|
|
* Class Index
|
|
|
|
* @package app\api\controller
|
|
|
|
*/
|
|
|
|
class Index extends Controller
|
|
|
|
{
|
|
|
|
public function index()
|
|
|
|
{
|
|
|
|
echo '当前访问的index.php,请将index.html设为默认站点入口';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getBannerList()
|
|
|
|
{
|
|
|
|
$list = Banner::where("status", 10)->select()->toArray();
|
|
|
|
foreach ($list as &$value) {
|
|
|
|
$file_path = UploadFile::where('file_id', $value['image_id'])->field('file_id,file_path,file_type,storage,domain')->find();
|
|
|
|
$value['image'] = getUrl($file_path['file_path'], $file_path['domain']);
|
|
|
|
}
|
|
|
|
return $this->renderSuccess($list);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @notes:获取小程序配置
|
|
|
|
* @return Json
|
|
|
|
* @throws DataNotFoundException
|
|
|
|
* @throws DbException
|
|
|
|
* @throws ModelNotFoundException
|
|
|
|
* @author: wanghousheng
|
|
|
|
*/
|
|
|
|
public function wxAppSetting(): Json
|
|
|
|
{
|
|
|
|
$data = (new \app\api\model\wxapp\Setting())->info();
|
|
|
|
return $this->renderSuccess($data);
|
|
|
|
}
|
|
|
|
}
|