diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php
index 798198a..1fb58c1 100644
--- a/resources/views/admin/platform_orders/index.blade.php
+++ b/resources/views/admin/platform_orders/index.blade.php
@@ -1580,8 +1580,16 @@
$blrTopReasonCount = (int) (data_get($bmpaLastResult, 'top_reasons.0.count') ?? 0);
@endphp
@if($bmpaAt !== '')
+ @php
+ $bmpaMode = (string) (data_get($batchBmpa, 'mode') ?? '');
+ $bmpaModeText = $bmpaMode === 'queue' ? '队列' : ($bmpaMode !== '' ? $bmpaMode : '同步');
+
+ $bmpaScope = (string) (data_get($batchBmpa, 'scope') ?? '');
+ $bmpaScopeText = $bmpaScope === 'all' ? '全量' : ($bmpaScope === 'filtered' ? '筛选' : ($bmpaScope !== '' ? $bmpaScope : '-'));
+ @endphp
{{ $bmpaAt }}
管理员:{{ $bmpaAdminId ?: '-' }}
+ 范围:{{ $bmpaScopeText }};方式:{{ $bmpaModeText }}
@if($bmpaRunId !== '')
批次:
diff --git a/tests/Feature/AdminPlatformOrderIndexBatchBmpaModeAndScopeShouldRenderTest.php b/tests/Feature/AdminPlatformOrderIndexBatchBmpaModeAndScopeShouldRenderTest.php
new file mode 100644
index 0000000..9bb2f50
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderIndexBatchBmpaModeAndScopeShouldRenderTest.php
@@ -0,0 +1,70 @@
+seed();
+
+ $this->post('/admin/login', [
+ 'email' => 'platform.admin@demo.local',
+ 'password' => 'Platform@123456',
+ ])->assertRedirect('/admin');
+ }
+
+ public function test_platform_orders_page_should_render_batch_bmpa_mode_and_scope_when_present(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ $merchant = Merchant::query()->firstOrFail();
+ $plan = Plan::query()->create([
+ 'code' => 'po_bmpa_mode_scope_plan',
+ 'name' => 'BMPA mode/scope 渲染测试套餐',
+ 'billing_cycle' => 'monthly',
+ 'price' => 10,
+ 'list_price' => 10,
+ 'status' => 'active',
+ 'sort' => 10,
+ 'published_at' => now(),
+ ]);
+
+ PlatformOrder::query()->create([
+ 'merchant_id' => $merchant->id,
+ 'plan_id' => $plan->id,
+ 'order_no' => 'PO_BMPA_MODE_SCOPE_0001',
+ 'order_type' => 'new_purchase',
+ 'status' => 'pending',
+ 'payment_status' => 'unpaid',
+ 'plan_name' => $plan->name,
+ 'billing_cycle' => $plan->billing_cycle,
+ 'period_months' => 1,
+ 'quantity' => 1,
+ 'payable_amount' => 10,
+ 'paid_amount' => 0,
+ 'placed_at' => now()->subMinutes(10),
+ 'meta' => [
+ 'batch_mark_paid_and_activate' => [
+ 'at' => now()->toDateTimeString(),
+ 'admin_id' => 1,
+ 'scope' => 'filtered',
+ 'mode' => 'queue',
+ 'run_id' => 'BMPA_TEST_MODE_SCOPE_0001',
+ ],
+ ],
+ ]);
+
+ $this->get('/admin/platform-orders')
+ ->assertOk()
+ ->assertSee('范围:筛选;方式:队列');
+ }
+}