| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- $this->title = '名下账户返佣规则';
- ?>
- <div class="row">
- <div class="col-md-3">
- <?= $this->render('/common/_inner_left_menu.php', ['login' => $login]) ?>
- </div>
- <div class="col-md-9">
- <div class="ibox float-e-margins">
- <div class="ibox-title">
- <h5>返佣规则</h5>
- </div>
- <div class="ibox-content">
- <div class="table-responsive">
- <table class="table table-bordered">
- <thead>
- <tr>
- <th>FOREX</th>
- <th>METAL</th>
- <th>CFD</th>
- <th>黄金</th>
- <th>白银</th>
- <th>外佣</th>
- </tr>
- </thead>
- <tbody>
- <?php if (!empty($commission)) : ?>
- <tr>
- <td>$<?= $commission['forex'] ?>/手</td>
- <td>$<?= $commission['metal'] ?>/手</td>
- <td>$<?= $commission['cfd'] ?>/手</td>
- <td>$<?= $commission['gold'] ?>/手</td>
- <td>$<?= $commission['silver'] ?>/手</td>
- <td>$<?= $commission['wy'] ?>/手</td>
- </tr>
- <?php else : ?>
- <tr>
- <td colspan="6">没有返佣规则</td>
- </tr>
- <?php endif; ?>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
|