wlpt的提现功能

1.<transaction id="WithdrawPre" template="pageLoaderTemplate">

  <actions>

     <ref name="action">WithdrawAction</ref>

  </actions>

  <channels>

    <channel type="http">

      <param name="success">recharge:zh_CN/withdraw/withdrawPre</param>

      <param name="success2">servlet,LoginPre</param>

    </channel>

  </channels>

 </transaction>

   这是提现的页面的交易,交易名为WithdrawPre.

  Action为WithdrawAction

  这个交易走的是init方法,

  if (null != obj && (obj instanceof WUser)) {

    usr = (WUser) context.getUser();

  }

  然后是

  Map o = getBindCard(context, usr.getAcNo);

   

原文地址:https://www.cnblogs.com/gaoguofeng/p/5553648.html