|
@@ -105,6 +105,8 @@ class Pay extends Base
|
|
|
$order = $orderModel->where(['id' => $orderId])->find();
|
|
|
|
|
|
Hook::listen('paid_success', $order, ['pay_type' => \addons\unishop\model\Order::PAY_WXPAY]);
|
|
|
+
|
|
|
+ $this->success('支付成功', []);
|
|
|
}
|
|
|
public function unify_old()
|
|
|
{
|
|
@@ -339,6 +341,7 @@ class Pay extends Base
|
|
|
*/
|
|
|
public function alipay()
|
|
|
{
|
|
|
+ $this->error('暂不支持支付宝');
|
|
|
$orderId = $this->request->request('order_id', 0);
|
|
|
$orderId = Hashids::decodeHex($orderId);
|
|
|
|