| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!DOCTYPE html>
- <html>
- <head lang="en">
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
- <title>商城状态</title>
- <link rel="stylesheet" href="/css/join/common.css?version=<?= $this->context->version ?>"/>
- <link rel="stylesheet" href="/css/join/login.css?version=<?= $this->context->version ?>"/>
- <style>
- .login_bg{
- background: #ffffff;
- }
- .login_btn{
- width: 80%;
- margin: 10%;
- }
- .other_login{
- top: 70%;
- }
- .other_choose{
- top: 80%;
- }
- </style>
- </head>
- <body>
- <div class="login_bg">
- <div id="logo">
- <img src="<?= Yii::$app->params['imgUrl'].$merchant['logo'] ?>" alt=""/>
- <div style="text-align:center;"><?= $merchant['merchantName'] ?></div>
- </div>
- <div style="padding-top:10px 0 10px 0;text-align:center;">
- <p>恭喜,您的申请提交成功,状态:</p>
- </div>
- <a class="login_btn" href="login.html"><?= $status[$merchant['status']] ?></a>
- <?php if(!empty($originalMerchant)){ ?>
- <div style="padding-top:10px 0 10px 0;text-align:center;">
- <p>请关注下面公众号,审核通过会以微信的方式通知您:</p>
- <a href="javascript:void(0)">
- <img src="<?= Yii::$app->params['imgUrl'].$originalMerchant['wxQrcodeUrl'] ?>" style="margin:0 auto;width:500px;" />
- </a>
- </div>
- <?php } ?>
- <div style="text-align:center;margin-top:70px;">
- <a href="/">
- <img src="/images/adLogo.png?v=2" style="margin:0 auto;width:120px;" />
- </a>
- </div>
- </div>
- </body>
- </html>
|