diff --git a/app/Admin/Forms/Settings/App.php b/app/Admin/Forms/Settings/App.php index 60a74c2d..f979b73f 100644 --- a/app/Admin/Forms/Settings/App.php +++ b/app/Admin/Forms/Settings/App.php @@ -38,7 +38,7 @@ class App extends Form $this->divider(); $this->text('search_hot_keys', '搜索热词(英文半角逗号隔开)')->value($appSettings['search_hot_keys'] ?? ''); $this->divider(); - $this->number('order_payment_expires_at', '订单支付过期时间(秒)')->value(['order_payment_expires_at'] ?? ''); + $this->number('order_payment_expires_at', '订单支付过期时间(秒)')->value($appSettings['order_payment_expires_at'] ?? ''); $this->number('order_auto_complete_days', '订单自动完成时间(天)')->value($appSettings['order_auto_complete_days'] ?? ''); $this->number('sale_after_expire_days', '售后过期时间(天)')->value($appSettings['sale_after_expire_days'] ?? ''); $this->divider();