From 171d22e86a7931724378edc42a61c40bcae5d106 Mon Sep 17 00:00:00 2001 From: liapples Date: Mon, 6 Sep 2021 16:03:03 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9help?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/AdminAgent/Controllers/AgentProductController.php | 4 ++-- app/AdminAgent/Forms/Setting.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/AdminAgent/Controllers/AgentProductController.php b/app/AdminAgent/Controllers/AgentProductController.php index 1f9aead..a3c04dc 100644 --- a/app/AdminAgent/Controllers/AgentProductController.php +++ b/app/AdminAgent/Controllers/AgentProductController.php @@ -267,11 +267,11 @@ class AgentProductController extends AdminController $form->number('earnest')->min(0) ->default(0)->help('单位:元。不输入或输入 0 则不支持定金支付,必须和定金超时时间同时设置才会生效'); $form->number('earnest_timeout')->min(0) - ->default(0)->help('单位:分钟。超过这个时间未支付,订单将自动关闭'); + ->default(0)->help('单位:分钟。超过这个时间未支付尾款,订单将自动关闭,且定金不退'); $form->number('deposit')->min(0) ->default(0)->help('单位:元。不输入或输入 0 则不支持订金支付,必须和订金超时时间同时设置才会生效'); $form->number('deposit_timeout')->min(0) - ->default(0)->help('单位:分钟。超过这个时间未支付,订单将自动关闭'); + ->default(0)->help('单位:分钟。超过这个时间未支付尾款,订单将自动关闭,且订金不退'); /*$form->tree('channel_id', '所属频道') ->expand(false) diff --git a/app/AdminAgent/Forms/Setting.php b/app/AdminAgent/Forms/Setting.php index 518e3c0..568eed3 100644 --- a/app/AdminAgent/Forms/Setting.php +++ b/app/AdminAgent/Forms/Setting.php @@ -33,7 +33,7 @@ class Setting extends Form public function form() { $this->text('order_timeout')->required()->default(60) - ->help('订单超时时间,单位:分钟。(订金、定金支付的超时时间将根据产品设定的超时时间)'); + ->help('订单超时时间,单位:分钟。超过该时间未支付,订单将自动关闭'); $this->radio('auto_shelves')->when([1], function (Form $form) { // 值为1和4时显示文本框 $form->number('profit','利润(%)')->min(0)->max(100)->help('请填写利润百分比 上架商品会自动根据供应商提供的价格 上调设置值的百分比');