result.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
  6. <title>商城状态</title>
  7. <link rel="stylesheet" href="/css/join/common.css?version=<?= $this->context->version ?>"/>
  8. <link rel="stylesheet" href="/css/join/login.css?version=<?= $this->context->version ?>"/>
  9. <style>
  10. .login_bg{
  11. background: #ffffff;
  12. }
  13. .login_btn{
  14. width: 80%;
  15. margin: 10%;
  16. }
  17. .other_login{
  18. top: 70%;
  19. }
  20. .other_choose{
  21. top: 80%;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <div class="login_bg">
  27. <div id="logo">
  28. <img src="<?= Yii::$app->params['imgUrl'].$merchant['logo'] ?>" alt=""/>
  29. <div style="text-align:center;"><?= $merchant['merchantName'] ?></div>
  30. </div>
  31. <div style="padding-top:10px 0 10px 0;text-align:center;">
  32. <p>恭喜,您的申请提交成功,状态:</p>
  33. </div>
  34. <a class="login_btn" href="login.html"><?= $status[$merchant['status']] ?></a>
  35. <?php if(!empty($originalMerchant)){ ?>
  36. <div style="padding-top:10px 0 10px 0;text-align:center;">
  37. <p>请关注下面公众号,审核通过会以微信的方式通知您:</p>
  38. <a href="javascript:void(0)">
  39. <img src="<?= Yii::$app->params['imgUrl'].$originalMerchant['wxQrcodeUrl'] ?>" style="margin:0 auto;width:500px;" />
  40. </a>
  41. </div>
  42. <?php } ?>
  43. <div style="text-align:center;margin-top:70px;">
  44. <a href="/">
  45. <img src="/images/adLogo.png?v=2" style="margin:0 auto;width:120px;" />
  46. </a>
  47. </div>
  48. </div>
  49. </body>
  50. </html>