查询最大分账比例 
服务商可以查询子商户设置的允许服务商分账的最大比例。 官方文档
js
wxpay.v2.pay.profitsharingmerchantratioquery.post({
  mch_id,
  sub_mch_id,
  brand_mch_id,
  nonce_str,
  sign_type,
})
.then(
  ({ 
    data: {
      return_code,
      return_msg,
      mch_id,
      sub_mch_id,
      brand_mch_id,
      transaction_id,
      max_ratio,
      nonce_str,
      sign,
    },
  }) => ({
    return_code,
    return_msg,
    mch_id,
    sub_mch_id,
    brand_mch_id,
    transaction_id,
    max_ratio,
    nonce_str,
    sign,
  })
)