From a672b5065ece5b8ef5d4203c64d6d54cc0db3ff6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=9D=99?= Date: Tue, 28 Dec 2021 14:44:31 +0800 Subject: [PATCH] WIP --- app/Admin/Forms/Settings/App.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();