多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
## 扫码付 ~~~[api] get:/Pays/Qrcode/pay_zk_index *domain_auth=默认值#授权码,平台方提供 *storeid=默认值#门店编号 *amount=默认值#支付金额 *zk_order=默认值#商品订单号 *key=默认值#校验密钥 <<< success {"status":"0000","codemsg":"预下单成功","info":"http://www.xxxx.com"} <<< error {"status":errorcode,"codemsg":error msg} ~~~ >key生成的通用步骤如下: str=qf_2019 key=md5(str.domain_auth.storeid.amount.zk_order); ``` 例如: $getKey=md5($str.$domain_auth.$storeid.$amount.$zk_order); $array = array( 'domain_auth'=>$domain_auth, 授权码(我 提供) A1bB2n5cso 'storeid'=>$storeid, 门店编号 'amount'=>$amount, 消费金额 'zk_order'=>$zk_order, 商品订单号 'key'=>$getKey 校验密钥 ); $sendString=json_encode($array); $sen = encode($sendString); url:/Pays/Qrcode/pay_zk_index?data=$sen ```