Authored by Rock Zhang

修复支付金额单位为分时导致微信扫码支付失败的bug

... ... @@ -93,7 +93,7 @@ class Service extends PayAbstract
$rsp->bankName = "WX";
$rsp->orderCode = $data['orderCode'];
$rsp->payTime = $result["time_end"];
$rsp->totalFee = $result["total_fee"];
$rsp->totalFee = $result["total_fee"] / 100;
$rsp->resultMsg = '支付成功';
//添加支付订单号和交易号
$rsp->payOrderCode = $data["orderCode"];
... ...