香洲二院小程序
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.
mini_xzey/routes/api.php

42 lines
1.8 KiB

<?php
use App\Http\Controllers\Auth\AuthController;
use App\Http\Controllers\Patient\PatientController;
use App\Http\Controllers\Registration\RecordController;
use App\Http\Controllers\Registration\ScheduleController;
use App\Http\Controllers\Dictionary\ItemController;
use Illuminate\Support\Facades\Route;
Route::middleware(['apiLog'])->group(function() {
Route::post('login', [AuthController::class, 'login']);
Route::any('unauthorized', [AuthController::class, 'unauthorized'])->name('login');
Route::middleware(['auth:sanctum'])->group(function() {
// 患者模块
Route::prefix('Patient')->group(function () {
Route::get('/', [PatientController::class, 'lists']);
Route::get('/{patient_id}', [PatientController::class, 'details']);
Route::post('/create', [PatientController::class, 'create']);
Route::post('/bind', [PatientController::class, 'bind']);
Route::post('/{patient_id}/default', [PatientController::class, 'setDefault']);
Route::delete('/{patient_id}/delete', [PatientController::class, 'delete']);
});
// 挂号模块
Route::prefix('Registration')->group(function () {
Route::get('/dept', [ScheduleController::class, 'dept']);
Route::get('/doctor', [ScheduleController::class, 'doctor']);
Route::get('/{patient_id}/record', [RecordController::class, 'lists']);
Route::post('/{patient_id}/record/{serial_no}/refund', [RecordController::class, 'refund']);
});
// 缴费详情项目
Route::prefix('Dictionary')->group(function () {
Route::get('/', [ItemController::class, 'lists']);
Route::get('/{type_id}', [ItemController::class, 'details'])->where('type_id', '[0-9]+');;
});
});
});