Browse Source

update

master
DengBiao 1 year ago
parent
commit
ed192a6383
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      app/hdl/hdl_wx.go

+ 2
- 2
app/hdl/hdl_wx.go View File

@@ -216,12 +216,12 @@ func DealCallBack(openId, ticket string) error {
//4、发送微信红包 //4、发送微信红包
post, err := utils.CurlPost("http://pay.izhyin.com/wx/redPackage/index", map[string]string{ post, err := utils.CurlPost("http://pay.izhyin.com/wx/redPackage/index", map[string]string{
"openid": openId, "openid": openId,
"amount": utils.Float64ToStr(utils.StrToFloat64(qrcodeWithBatchRecord.Amount) * 100),
"amount": utils.Int64ToStr(utils.StrToInt64(qrcodeWithBatchRecord.Amount) * 100),
}, nil) }, nil)
utils.FilePutContents("send_redPackage", utils.SerializeStr(map[string]interface{}{ utils.FilePutContents("send_redPackage", utils.SerializeStr(map[string]interface{}{
"args": map[string]string{ "args": map[string]string{
"openid": openId, "openid": openId,
"amount": utils.Float64ToStr(utils.StrToFloat64(qrcodeWithBatchRecord.Amount) * 100),
"amount": utils.Int64ToStr(utils.StrToInt64(qrcodeWithBatchRecord.Amount) * 100),
}, },
"resp": post, "resp": post,
})) }))


Loading…
Cancel
Save