39 lines
1.2 KiB
PHP
39 lines
1.2 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2024 http://www.tensent.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Author: molong <molong@tensent.cn> <http://www.tensent.cn>
|
|
// +----------------------------------------------------------------------
|
|
namespace Modules\Member\Controllers\Admin;
|
|
|
|
use Illuminate\Http\Request;
|
|
use App\Http\Controllers\BaseController;
|
|
use Modules\Member\Services\ExtendService;
|
|
|
|
class Extend extends BaseController {
|
|
|
|
public function index(Request $request, ExtendService $service){
|
|
try {
|
|
$this->data['data'] = $service->getDataList($request);
|
|
} catch (\Throwable $th) {
|
|
$this->data['code'] = 0;
|
|
$this->data['message'] = $th->getMessage();
|
|
}
|
|
|
|
return $this->data;
|
|
}
|
|
|
|
public function audit(Request $request, ExtendService $service){
|
|
try {
|
|
$this->data['data'] = $service->audit($request);
|
|
$this->data['message'] = '审核完成!';
|
|
} catch (\Throwable $th) {
|
|
$this->data['code'] = 0;
|
|
$this->data['message'] = $th->getMessage();
|
|
}
|
|
|
|
return $this->data;
|
|
}
|
|
} |