bulk_action.html.erb 413 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>拒绝提现</title>
  5. </head>
  6. <body>
  7. <div id="confirm" style="display: <%=@confirm_diaplay%>">
  8. <input type="button" value="是的,我确定" id="yes" onclick="confirm()" >
  9. <input type="button" value="取 消" id="no" onclick="not_confirm()" >
  10. </div>
  11. <div id="success" >
  12. <h3>已拒绝, 提现款项已回到资金账户中。</h3>
  13. </div>
  14. </body>
  15. </html>