index.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. $this->title = '名下账户返佣规则';
  3. ?>
  4. <div class="row">
  5. <div class="col-md-3">
  6. <?= $this->render('/common/_inner_left_menu.php', ['login' => $login]) ?>
  7. </div>
  8. <div class="col-md-9">
  9. <div class="ibox float-e-margins">
  10. <div class="ibox-title">
  11. <h5>返佣规则</h5>
  12. </div>
  13. <div class="ibox-content">
  14. <div class="table-responsive">
  15. <table class="table table-bordered">
  16. <thead>
  17. <tr>
  18. <th>FOREX</th>
  19. <th>METAL</th>
  20. <th>CFD</th>
  21. <th>黄金</th>
  22. <th>白银</th>
  23. <th>外佣</th>
  24. </tr>
  25. </thead>
  26. <tbody>
  27. <?php if (!empty($commission)) : ?>
  28. <tr>
  29. <td>$<?= $commission['forex'] ?>/手</td>
  30. <td>$<?= $commission['metal'] ?>/手</td>
  31. <td>$<?= $commission['cfd'] ?>/手</td>
  32. <td>$<?= $commission['gold'] ?>/手</td>
  33. <td>$<?= $commission['silver'] ?>/手</td>
  34. <td>$<?= $commission['wy'] ?>/手</td>
  35. </tr>
  36. <?php else : ?>
  37. <tr>
  38. <td colspan="6">没有返佣规则</td>
  39. </tr>
  40. <?php endif; ?>
  41. </tbody>
  42. </table>
  43. </div>
  44. </div>
  45. </div>
  46. </div>
  47. </div>