| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- /* @var $this \yii\web\View */
- /* @var $content string */
- use yii\helpers\Html;
- use yii\helpers\Url;
- $this->title = '支付失败';
- ?>
- <?php $this->beginBlock('header_script'); ?>
- <link href="<?= STATIC_URL ?>/ui/css/plugins/dataTables/datatables.min.css" rel="stylesheet">
- <style>
- .tip {
- text-align: center;
- margin-top: 140px;
- }
- .tip i {
- font-size: 6em;
- }
- .tip2 {
- margin-top: 120px;
- }
- </style>
- <?php $this->endBlock(); ?>
- <div class="row">
- <div class="col-md-3">
- <?= $this->render('/common/_left_menu.php') ?>
- </div>
- <div class="col-md-3">
- <div class="tip">
- <button class="btn btn-outline btn-danger dim" type="button"><i class="fa fa-warning"></i>
- </button>
- <h3>支付失败</h3>
- </div>
- </div>
- <?php if (!empty($deposit)): ?>
- <div class="col-md-6">
- <div class="ibox tip2">
- <div class="ibox-title">
- <h5>支付信息</h5>
- </div>
- <div class="ibox-content">
- <p><strong>编号:</strong><?= $deposit['id'] ?></p>
- <p><strong>金额:</strong>¥<?= $deposit['amount'] ?></p>
- <p>
- <strong>时间:</strong><?= !empty($deposit['in_time']) ? strtotime('Y-m-d H:i:s', $deposit['in_time'] / 1000) : '' ?>
- </p>
- </div>
- </div>
- </div>
- <?php endif; ?>
- </div>
|