review.php 529 B

12345678910111213141516171819
  1. <div style="padding:1.6rem">
  2. <div align="center">
  3. 错误: <?= $errors ?>
  4. </div>
  5. <div align="center" style="margin-top:3.6rem">
  6. <button style="width:210px; height:30px; border-radius: 15px;background-color:#FE6714; border:0px #FE6714 solid; cursor: pointer; color:white; font-size:16px;" type="button" onclick="callpay()" >重新支付</button>
  7. </div>
  8. </div>
  9. <script>
  10. function callpay()
  11. {
  12. window.location.href="<?= Yii::$service->url->getUrl('payment/wxpayh5/start'); ?>";
  13. }
  14. </script>