Sha256: 2791e1c3e49211779a3bfd6725636af38508cf2d735760d00887a8edf778376e

Contents?: true

Size: 1.28 KB

Versions: 1

Compression:

Stored size: 1.28 KB

Contents

# coding: utf-8

module Reapal
  module Form
    module MobileModifyForm

      # 1.7 签约手机号修改
      #
      # @param contract [String] 用户协议
      # @param new_phone [String] 新手机号
      # @param return_url [String] 回调 url
      # @param notify_url [String] 通知 url
      # @param buyway [String] 设备通道,默认手机端。00:PC端;01:手机端;02:Pad端;03:其它
      #
      # @return [ Hash ] 结果集
      #   * :form_method
      #     * :method
      #     * :url
      #   * :form_data
      #     * :merchant_id
      #     * :encryptkey
      #     * :data
      #
      def mobile_modify_form(contract, new_phone, return_url, notify_url, busway='01')
        service = 'reapal.trust.mobileModify'
        post_path = '/reagw/user/rest.htm'

        params = {
          contracts: contract,
          mobile: new_phone,
          busway: busway,
          returnUrl: return_url,
          notifyUrl: notify_url,
          applyTime: Time.now.strftime('%Y-%m-%d %H:%M:%S'),
        }

        form_data = Http.get_body(service, params, @config)

        {
          form_method: {
            method: :post,
            url: config[:server_url] + post_path,
          },
          form_data: form_data
        }
      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reapal-0.2.2 lib/reapal/form/mobile_modify_form.rb