chore(addon): weapp 插件与niushopV5部分代码同步比较

This commit is contained in:
2025-12-05 16:04:46 +08:00
parent ff89fdf5e9
commit 6b41e46f30
17 changed files with 503 additions and 25 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace addon\weapp\event;
use app\model\system\Cron;
/**
* 充值订单完成后
*/
class MemberRechargeOrderPay
{
public function handle($param)
{
return (new Cron())->addCron(1, 0, "小程序虚拟发货", "WeappVirtualDelivery", time() + 60, $param['out_trade_no']);
}
}