diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php
index e4afa85..d1edb46 100644
--- a/resources/views/admin/platform_orders/index.blade.php
+++ b/resources/views/admin/platform_orders/index.blade.php
@@ -1045,7 +1045,7 @@
}
@endphp
@if($rowLeadId > 0)
-
+
@endif
@@ -1147,7 +1147,7 @@
{{ $order->siteSubscription->subscription_no }}
@else
-
diff --git a/tests/Feature/AdminPlatformOrderIndexSubIdAndLeadLinkUseMutedXsTest.php b/tests/Feature/AdminPlatformOrderIndexSubIdAndLeadLinkUseMutedXsTest.php
new file mode 100644
index 0000000..1c285b1
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderIndexSubIdAndLeadLinkUseMutedXsTest.php
@@ -0,0 +1,85 @@
+seed();
+
+ $this->post('/admin/login', [
+ 'email' => 'platform.admin@demo.local',
+ 'password' => 'Platform@123456',
+ ])->assertRedirect('/admin');
+ }
+
+ public function test_subscription_id_link_and_lead_link_use_muted_xs_class(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ $merchant = Merchant::query()->firstOrFail();
+
+ $plan = Plan::query()->create([
+ 'code' => 'po_index_muted_xs_links_plan',
+ 'name' => '平台订单列表 muted-xs 链接样式测试套餐',
+ 'billing_cycle' => 'monthly',
+ 'price' => 10,
+ 'list_price' => 10,
+ 'status' => 'active',
+ 'sort' => 10,
+ 'published_at' => now(),
+ ]);
+
+ $sub = SiteSubscription::query()->create([
+ 'merchant_id' => $merchant->id,
+ 'plan_id' => $plan->id,
+ 'status' => 'active',
+ 'source' => 'test',
+ 'subscription_no' => 'SS_MUTED_XS_0001',
+ 'plan_name' => $plan->name,
+ 'billing_cycle' => $plan->billing_cycle,
+ 'period_months' => 1,
+ 'amount' => 10,
+ 'starts_at' => now(),
+ 'ends_at' => now()->addMonth(),
+ ]);
+
+ PlatformOrder::query()->create([
+ 'merchant_id' => $merchant->id,
+ 'plan_id' => $plan->id,
+ 'site_subscription_id' => $sub->id,
+ 'order_no' => 'PO_INDEX_MUTED_XS_LINK_0001',
+ 'order_type' => 'renewal',
+ 'status' => 'activated',
+ 'payment_status' => 'paid',
+ 'plan_name' => $plan->name,
+ 'billing_cycle' => $plan->billing_cycle,
+ 'period_months' => 1,
+ 'quantity' => 1,
+ 'payable_amount' => 10,
+ 'paid_amount' => 10,
+ 'placed_at' => now(),
+ 'paid_at' => now(),
+ 'activated_at' => now(),
+ 'meta' => [
+ 'platform_lead_id' => 123,
+ ],
+ ]);
+
+ $res = $this->get('/admin/platform-orders');
+ $res->assertOk();
+
+ $res->assertSee('class="muted muted-xs"', false);
+ $res->assertSee('class="link muted-xs"', false);
+ }
+}
|