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.
26 lines
424 B
26 lines
424 B
<?php
|
|
|
|
namespace app\distribution\controller\api;
|
|
|
|
use think\App;
|
|
|
|
class Poster extends Base
|
|
{
|
|
|
|
|
|
/**
|
|
* 获取我的海报数据
|
|
* @date 2022-11-08
|
|
*/
|
|
public function getPoster()
|
|
{
|
|
$param = input('post.');
|
|
|
|
$poster_logic = new \app\distribution\logic\Poster();
|
|
|
|
// 获取我的海报数据
|
|
$result = $poster_logic->getPoster();
|
|
|
|
return json($result);
|
|
}
|
|
} |