This commit is contained in:
root 2020-01-02 00:19:04 +08:00
parent dc37499df9
commit d653541ef3

View File

@ -277,6 +277,9 @@ class OrderController extends Controller
if (!$order) { if (!$order) {
abort(500, '订单不存在'); abort(500, '订单不存在');
} }
if ($order->status !== 1) {
abort(500, '只可以取消待支付订单');
}
$order->status = 2; $order->status = 2;
if (!$order->save()) { if (!$order->save()) {
abort(500, '取消失败'); abort(500, '取消失败');