소스 검색

update

master
DengBiao 1 년 전
부모
커밋
4e64947d86
2개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. +1
    -1
      app/hdl/hdl_demo.go
  2. +3
    -2
      app/hdl/hdl_wx.go

+ 1
- 1
app/hdl/hdl_demo.go 파일 보기

@@ -26,7 +26,7 @@ func Demo(c *gin.Context) {
}

func Demo1(c *gin.Context) {
post, err := utils.CurlPost("http://pay.com/wx/redPackage/index", map[string]string{
post, err := utils.CurlPost("http://pay.izhyin.com/wx/redPackage/index", map[string]string{
"re_openid": "oLAbGuMC5o6fJRcLSicj0MENGoEo",
"amount": "100.00",
}, nil)


+ 3
- 2
app/hdl/hdl_wx.go 파일 보기

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

utils.FilePutContents("send_redPackage", utils.SerializeStr(map[string]interface{}{
"args": map[string]string{
"openid": openId,
"amount": utils.Int64ToStr(utils.StrToInt64(qrcodeWithBatchRecord.Amount) * 100),
"amount": utils.Float64ToStr(utils.StrToFloat64(qrcodeWithBatchRecord.Amount) * 100),
},
"resp": post,
}))


불러오는 중...
취소
저장