tapi/app/controller/admin/xm/PlatformController.php
2025-09-11 22:12:37 +08:00

27 lines
616 B
PHP

<?php
namespace app\controller\admin\xm;
use app\BaseController;
use app\service\CurdService;
use think\response\Json;
class PlatformController extends BaseController
{
public function page(): Json
{
try{
$model = \app\entity\XmPlatform::withSearch([], [
'name' => $this->request->get('name/s', ''),
]);
$paginate = CurdService::getPaginate($this->request, $model);
}catch (\Exception $e){
return $this->writeError($e->getMessage());
}
return $this->writeSuccess('success', $paginate);
}
}