作者 何书鹏
1 个管道 的构建 通过 耗费 1 秒

测试恢复

... ... @@ -151,7 +151,7 @@ class OrderGrab extends Api
empty($grab_price) && $this->error('请输入您的出价');
$order = Order::get($order_id);
empty($order) && $this->error('订单信息不存在');
// $order['user_id'] == $this->auth->id && $this->error('抱歉,无法抢自己的发单');
$order['user_id'] == $this->auth->id && $this->error('抱歉,无法抢自己的发单');
$has = $this->model->where('order_id',$order_id)->where('user_id',$this->auth->id)->find();
!empty($has) && $this->error('您已抢单,请勿重复操作');
// $grab_count = count($order['grabMany']);
... ...
... ... @@ -12,5 +12,5 @@
return [
'grab' => 300, // 抢单倒计时,5分钟=300秒
'pay' => 300, // 缴费倒计时,5分钟=300秒
'complete' => 60, // 自动确认成交,24小时=86400秒
'complete' => 86400, // 自动确认成交,24小时=86400秒
];
... ...