作者 李宇航

合并分支 'lyh-server' 到 'master'

变更数据



查看合并请求 !3270
... ... @@ -200,4 +200,17 @@ class IndexController extends BaseController
$data = Translate::translateSl($this->param['text']);
$this->response('success', Code::SUCCESS, $data);
}
/**
* @remark :pr报告下载
* @name :prInfoDownload
* @author :lyh
* @method :post
* @time :2025/11/18 15:00
*/
public function prInfoDownload()
{
$url = 'http://crawl.scraper.waimaoq.com/export/issuewire?token=MT0CM7y4tdFTFTm';
$this->response('success', Code::SUCCESS, ['url'=>$url]);
}
}
... ...
... ... @@ -18,6 +18,7 @@ Route::middleware(['aloginauth'])->group(function () {
Route::any('/getCountry', [Aside\Com\CNoticeController::class, 'getCountry'])->name('admin.getCountry');
Route::any('/getDynamicPassword', [Aside\Com\IndexController::class, 'getDynamicPassword'])->name('admin.getDynamicPassword');
Route::any('/notAiHumanizer', [Aside\Com\IndexController::class, 'notAiHumanizer'])->name('admin.notAiHumanizer');
Route::any('/prInfoDownload', [Aside\Com\IndexController::class, 'prInfoDownload'])->name('admin.prInfoDownload');//pr报告下载
//会员相关
Route::prefix('user')->group(function () {
//会员管理
... ...